| Conditions | 3 |
| Paths | 3 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 3 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 38 | 21 | public function matches(Request $request) |
|
| 39 | { |
||
| 40 | 21 | if (!parent::matches($request)) { |
|
| 41 | 16 | return false; |
|
| 42 | } |
||
| 43 | |||
| 44 | 9 | if (null === $this->queryString) { |
|
| 45 | 7 | return true; |
|
| 46 | } |
||
| 47 | |||
| 48 | 2 | return (bool) preg_match('{'.$this->queryString.'}', rawurldecode($request->getQueryString())); |
|
| 49 | } |
||
| 50 | } |
||
| 51 |