Total Complexity | 4 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
14 | class OptionsRequest extends AbstractRequest |
||
15 | { |
||
16 | |||
17 | /** |
||
18 | * OptionsRequest constructor. |
||
19 | */ |
||
20 | public function __construct() |
||
24 | ); |
||
25 | } |
||
26 | |||
27 | protected function getCacheTags(): array |
||
28 | { |
||
29 | return []; |
||
30 | } |
||
31 | |||
32 | protected function getCacheExpiresAfter(): ?int |
||
33 | { |
||
34 | return null; |
||
35 | } |
||
36 | |||
37 | protected function getCacheKey(): string |
||
40 | } |
||
41 | } |
||
42 |