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