Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
22 | 4 | public function createHeaders(): Objects\Headers |
|
23 | { |
||
24 | 4 | return new Objects\Headers( |
|
25 | 4 | array_map( |
|
26 | static function (Objects\HeaderAggregateFactory $factory): Objects\HeaderAggregate { |
||
27 | 4 | return $factory->createHeaderAggregate(); |
|
28 | 4 | }, |
|
29 | 4 | $this->getHeaders() |
|
30 | ) |
||
31 | ); |
||
32 | } |
||
33 | |||
46 |