Conditions | 2 |
Paths | 2 |
Total Lines | 6 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php namespace Comodojo\Dispatcher\Response\Preprocessor; |
||
24 | public function consolidate() { |
||
25 | |||
26 | $cleanup = ['Allow', 'Content-Encoding', 'Content-Language', 'Content-Length', 'Content-MD5', 'Content-Type', 'Last-Modified']; |
||
27 | |||
28 | foreach ($cleanup as $header) { |
||
29 | $this->response->getHeaders()->delete($header); |
||
30 | } |
||
35 |