| Conditions | 4 |
| Paths | 3 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 8 |
| Ratio | 100 % |
| 1 | <?php |
||
| 14 | { |
||
| 15 | public function doValidation(Response $response) |
||
| 16 | { |
||
| 17 | if (strpos($response->getContentType(), 'image') === false |
||
| 18 | && strpos($response->getContentType(), 'pdf') === false |
||
| 19 | ) { |
||
| 20 | if (!$response->hasHeader('Content-Encoding') || $response->getHeader('Content-Encoding')[0] !== 'gzip') { |
||
| 21 | throw new ValidationFailedException('gzip compression not active'); |
||
| 22 | } |
||
| 26 |