Ejemplo n.º 1
0
 public function __construct()
 {
     foreach (Card::getSuits() as $suit) {
         foreach (Card::getValues() as $value) {
             $this->cards[] = new Card($suit, $value);
         }
     }
 }