| Total Complexity | 3 |
| Total Lines | 27 |
| 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 | /** |
||
| 28 | * @return array |
||
| 29 | */ |
||
| 30 | protected function getCacheTags(): array |
||
| 31 | { |
||
| 32 | return []; |
||
| 33 | } |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @return string|null |
||
| 37 | */ |
||
| 38 | protected function getCacheKey(): ?string |
||
| 41 | } |
||
| 42 | } |
||
| 43 |