Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
22 | 5 | public function createExamples(): Objects\Examples |
|
23 | { |
||
24 | 5 | return new Objects\Examples( |
|
25 | 5 | array_map( |
|
26 | static function (Objects\ExampleAggregateFactory $factory): Objects\ExampleAggregate { |
||
27 | 5 | return $factory->createExampleAggregate(); |
|
28 | 5 | }, |
|
29 | 5 | $this->getExamples() |
|
30 | ) |
||
31 | ); |
||
32 | } |
||
33 | |||
46 |