Total Complexity | 3 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
16 | trait MiddlewareAllowAllTrait |
||
17 | { |
||
18 | /** |
||
19 | * @return string[] |
||
20 | */ |
||
21 | 1 | public function getRequestMatchMethods(): array |
|
22 | { |
||
23 | 1 | return ['get', 'post', 'patch', 'put', 'delete']; |
|
24 | } |
||
25 | |||
26 | 1 | public function getRequestMatchPath(): string |
|
27 | { |
||
28 | 1 | return '^/'; |
|
29 | } |
||
30 | |||
31 | 1 | public function getMiddlewarePriority(): int |
|
34 | } |
||
35 | } |
||
36 |