Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
22 | 2 | public function createParameters(): Objects\Parameters |
|
23 | { |
||
24 | 2 | return new Objects\Parameters( |
|
25 | 2 | array_map( |
|
26 | static function (Objects\ParameterAggregateFactory $factory): Objects\ParameterAggregate { |
||
27 | 2 | return $factory->createParameterAggregate(); |
|
28 | 2 | }, |
|
29 | 2 | $this->getParameters() |
|
30 | ) |
||
31 | ); |
||
32 | } |
||
33 | |||
46 |