Total Complexity | 4 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class GroupTeamCollection implements \IteratorAggregate |
||
9 | { |
||
10 | private array $teams = []; |
||
11 | |||
12 | public static function createFromArrayResponse(array $response): self |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * @return ArrayIterator|\Traversable|GroupTeam[] |
||
25 | */ |
||
26 | public function getIterator(): ArrayIterator |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * @return GroupTeam[] |
||
33 | */ |
||
34 | public function sortedByRank(): array |
||
43 |