コード例 #1
0
ファイル: Deck_of_Cards.php プロジェクト: hemingto/codingdojo
 public function __construct($name)
 {
     parent::__construct();
     $this->name = $name;
 }
コード例 #2
0
ファイル: Hand.php プロジェクト: sixteenstudio/poker
 public function __construct(array $cards = [])
 {
     parent::__construct($cards);
     $this->cardLimit = 2;
 }