Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
36 | public function __construct(Uuid $gameId, Chips $bigBlind, Chips $smallBlind = null, int $tableSize = 9, Chips $minimumBuyIn, Chips $maximumBuyIn = null) |
||
37 | { |
||
38 | parent::__construct($gameId, $bigBlind, $smallBlind, $tableSize); |
||
39 | |||
40 | $this->minimumBuyIn = $minimumBuyIn; |
||
41 | $this->maximumBuyIn = $maximumBuyIn; |
||
42 | } |
||
43 | |||
60 |