Conditions | 3 |
Paths | 3 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 3 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
26 | 46 | public function getGames() : array { |
|
27 | 46 | if ($this instanceof \TournamentGenerator\Interfaces\WithRounds) { |
|
28 | 14 | $games = []; |
|
29 | 14 | foreach ($this->getRounds() as $round) { |
|
30 | 14 | $games[] = $round->getGames(); |
|
31 | } |
||
32 | 14 | return array_merge(...$games); |
|
33 | } |
||
34 | 46 | return $this->games; |
|
35 | } |
||
36 | } |