Fixed up older calculators and started some file cleanup

This commit is contained in:
Jeff Moser
2010-10-03 20:17:34 -04:00
parent 930444a0f7
commit 4308831e82
8 changed files with 11 additions and 50 deletions

View File

@ -7,7 +7,7 @@ require_once(dirname(__FILE__) . '/RatingContainer.php');
class Team extends RatingContainer
{
public function __construct(Player &$player = null, Rating &$rating = null)
public function __construct(Player &$player = null, Rating $rating = null)
{
parent::__construct();
@ -17,7 +17,7 @@ class Team extends RatingContainer
}
}
public function addPlayer(Player &$player, Rating &$rating)
public function addPlayer(Player &$player, Rating $rating)
{
$this->setRating($player, $rating);
return $this;