| Conditions | 2 |
| Paths | 2 |
| Total Lines | 15 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php namespace Comodojo\Dispatcher\Response\Preprocessor; |
||
| 28 | public function consolidate(Response $response) { |
||
| 29 | |||
| 30 | $cleanup = [ |
||
| 31 | 'Allow', |
||
| 32 | 'Content-Encoding', |
||
| 33 | 'Content-Language', |
||
| 34 | 'Content-Length', |
||
| 35 | 'Content-MD5', |
||
| 36 | 'Content-Type', |
||
| 37 | 'Last-Modified' |
||
| 38 | ]; |
||
| 39 | |||
| 40 | foreach ($cleanup as $header) { |
||
| 41 | $response->getHeaders() |
||
| 42 | ->delete($header); |
||
| 43 | } |
||
| 48 |