Completed
Push — master ( 7772bc...b7c027 )
by Derek Stephen
01:36
created

src/Mvc/Router/Decorator/NotAllowedDecorator.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
namespace Bone\Mvc\Router\Decorator;
4
5
use Bone\Mvc\View\ViewEngine;
6
use Psr\Http\Message\ResponseInterface;
7
use Psr\Http\Message\ServerRequestInterface;
8
use Psr\Http\Server\MiddlewareInterface;
9
use Psr\Http\Server\RequestHandlerInterface;
10
use Zend\Diactoros\Response\HtmlResponse;
11
12 View Code Duplication
class NotAllowedDecorator extends ExceptionDecorator
0 ignored issues
show
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
13
{
14
    /**
15
     * @param ServerRequestInterface $request
16
     * @param RequestHandlerInterface $handler
17
     * @return ResponseInterface
18
     */
19
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
20
    {
21
        $body = $this->viewEngine->render('error/not-allowed');
22
        $body = $this->viewEngine->render($this->getLayout(), [
23
            'content' => $body,
24
        ]);
25
26
        return $this->getResponseWithBodyAndStatus(new HtmlResponse(''), $body, 405);
27
28
        return parent::process($request, $handler);
29
    }
30
}