Esempio n. 1
0
 /**
  * Player receives a Card object
  * Return $this for possible chaining
  *
  * @param Card $card
  * @return Player
  */
 public function receiveCard(Card $card)
 {
     $this->_hand->receiveCard($card);
     return $this;
 }