Total Complexity | 2 |
Total Lines | 10 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
16 | abstract class Action implements ActionInterface, StatusCodeInterface |
||
17 | { |
||
18 | public function getValidator(ServerRequestInterface $request): ?ValidatorInterface |
||
19 | { |
||
20 | return null; |
||
21 | } |
||
22 | |||
23 | public function handleError(ServerRequestInterface $request): ServerRequestInterface |
||
26 | } |
||
27 | } |
||
28 |