| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | 3 | public function createParameterCollection(): Objects\ParameterCollection |
|
| 23 | { |
||
| 24 | 3 | return new Objects\ParameterCollection( |
|
| 25 | 3 | array_map( |
|
| 26 | static function (Objects\ParameterFactory $factory): Objects\Parameter { |
||
| 27 | 3 | return $factory->createParameter(); |
|
| 28 | 3 | }, |
|
| 29 | 3 | $this->getParameters() |
|
| 30 | ) |
||
| 31 | ); |
||
| 32 | } |
||
| 33 | |||
| 39 |