for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace inroutephp\inroute\Runtime\Exception;
use Psr\Http\Message\ServerRequestInterface;
class MethodNotAllowedException extends RequestException
{
public function __construct(ServerRequestInterface $request, array $context = [])
parent::__construct("Http method not allowd", 405, $request, $context);
}