Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
22 | 4 | public function createServerCollection(): Objects\ServerCollection |
|
23 | { |
||
24 | 4 | return new Objects\ServerCollection( |
|
25 | 4 | array_map( |
|
26 | static function (Objects\ServerFactory $factory): Objects\Server { |
||
27 | 4 | return $factory->createServer(); |
|
28 | 4 | }, |
|
29 | 4 | $this->getServers() |
|
30 | ) |
||
31 | ); |
||
32 | } |
||
33 | |||
39 |