Total Complexity | 1 |
Total Lines | 12 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
13 | abstract class AbstractRestAction implements RequestHandlerInterface, RequestMethodInterface, StatusCodeInterface |
||
14 | { |
||
15 | protected const ROUTE_PATH = ''; |
||
16 | protected const ROUTE_ALLOWED_METHODS = []; |
||
17 | |||
18 | 1 | public static function getRouteDef(array $prevMiddleware = [], array $postMiddleware = []): array |
|
28 |