Conditions | 3 |
Paths | 4 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
47 | public function isExcluded(ServerRequestInterface $request) |
||
48 | { |
||
49 | return $this->value === null |
||
50 | ? $request->hasHeader($this->header) |
||
51 | : $this->value === $request->getHeaderLine($this->header) |
||
52 | || @preg_match($this->value, $request->getHeaderLine($this->header)) === 1; |
||
53 | } |
||
54 | } |
||
55 |