engelsystem/tests/Unit/Middleware/Stub/ExceptionMiddlewareHandler.php

24 lines
507 B
PHP
Raw Normal View History

2018-08-11 23:46:28 +02:00
<?php
declare(strict_types=1);
2018-08-11 23:46:28 +02:00
namespace Engelsystem\Test\Unit\Middleware\Stub;
use Exception;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
use Psr\Http\Server\RequestHandlerInterface;
class ExceptionMiddlewareHandler implements RequestHandlerInterface
{
/**
* Throws an exception
*
* @throws Exception
*/
public function handle(ServerRequestInterface $request): ResponseInterface
{
throw new Exception('Boooom!');
}
}