Another pass at fixing up references

This commit is contained in:
Jeff Moser
2010-09-30 08:25:31 -04:00
parent 5368f7528e
commit 803a0816a8
28 changed files with 168 additions and 103 deletions

View File

@ -38,8 +38,9 @@ class Player implements ISupportPartialPlay, ISupportPartialUpdate
/// <summary>
/// The identifier for the player, such as a name.
/// </summary>
public function getId()
public function &getId()
{
$id = &$this->_Id;
return $this->_Id;
}