1 | <?php declare(strict_types = 1); |
||
9 | class FilterValidationMiddleware implements ApplicationInterface |
||
10 | { |
||
11 | /** @var ApplicationInterface */ |
||
12 | private $application; |
||
13 | |||
14 | /** @var callable */ |
||
15 | private $errorHandler; |
||
16 | |||
17 | public function __construct(ApplicationInterface $application, callable $errorHandler) |
||
22 | |||
23 | public function execute(ServerRequestInterface $request) : ResponseInterface |
||
45 | } |
||
46 |