コード例 #1
0
ファイル: Deck.php プロジェクト: hkxnyc/php_poker
 public function __construct()
 {
     foreach (Card::getSuits() as $suit) {
         foreach (Card::getValues() as $value) {
             $this->cards[] = new Card($suit, $value);
         }
     }
 }