Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
22 | public function createRequestBodies(): Objects\RequestBodies |
||
23 | { |
||
24 | return new Objects\RequestBodies( |
||
25 | array_map( |
||
26 | static function (Objects\RequestBodyAggregateFactory $factory): Objects\RequestBodyAggregate { |
||
27 | return $factory->createRequestBodyAggregate(); |
||
28 | }, |
||
29 | $this->getRequestBodies() |
||
30 | ) |
||
31 | ); |
||
32 | } |
||
33 | |||
46 |