Conditions | 1 |
Paths | 1 |
Total Lines | 5 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
37 | 1 | public function handle(ServerRequestInterface $request): ResponseInterface |
|
38 | { |
||
39 | 1 | return $this->responseFactory->createResponse(500, 'Internal Server Error') |
|
40 | 1 | ->withHeader('Content-Type', 'text/plain; charset=utf-8') |
|
41 | 1 | ->withBody($this->streamFactory->createStream('Internal Server Error')); |
|
42 | } |
||
44 |