Conditions | 5 |
Paths | 4 |
Total Lines | 15 |
Code Lines | 10 |
Lines | 15 |
Ratio | 100 % |
Tests | 11 |
CRAP Score | 5 |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | * @param string $headerLine HTTP header line. |
||
22 | * |
||
23 | * @return bool |
||
24 | */ |
||
25 | 3 | protected function isSkipHeaderLine($headerLine) |
|
26 | { |
||
27 | 3 | return ($this->isHeaderHTTP($headerLine) || $this->isHeaderSetCookie($headerLine)); |
|
28 | } |
||
29 | |||
30 | /** |
||
31 | * Creates a data model for the collection. |
||
32 | * |
||
33 | * @param string $headerLine HTTP header line. |
||
34 | * |
||
35 | * @return Header |
||
36 | */ |
||
58 |