| Total Complexity | 3 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | class Guard extends ServerGuard |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @return $this |
||
| 25 | */ |
||
| 26 | 1 | public function validate() |
|
| 29 | } |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Check the request message safe mode. |
||
| 33 | * |
||
| 34 | * @return bool |
||
| 35 | */ |
||
| 36 | 1 | protected function isSafeMode(): bool |
|
| 37 | { |
||
| 38 | 1 | return true; |
|
| 39 | } |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @return bool |
||
| 43 | */ |
||
| 44 | 1 | protected function shouldReturnRawResponse(): bool |
|
| 47 | } |
||
| 48 | } |
||
| 49 |