コード例 #1
0
ファイル: Player.php プロジェクト: n3t1m/Poker-Demo
 /**
  * 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;
 }