| Conditions | 2 |
| Paths | 1 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | 5 | public function createOperationResponses(): Objects\OperationResponses |
|
| 29 | { |
||
| 30 | 5 | return new Objects\OperationResponses( |
|
| 31 | 5 | array_map( |
|
| 32 | static function (Objects\ResponseFactory $factory): Objects\Response { |
||
| 33 | 3 | return $factory->createResponse(); |
|
| 34 | 5 | }, |
|
| 35 | 5 | $this->getResponses() |
|
| 36 | ), |
||
| 37 | 5 | $this->getDefault() ? $this->getDefault()->createResponse() : null, |
|
| 38 | 5 | $this->getExtensions() |
|
| 39 | ); |
||
| 40 | } |
||
| 41 | |||
| 66 |