Conditions | 3 |
Paths | 3 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
38 | 25 | public function matches(Request $request) |
|
39 | { |
||
40 | 25 | if (!parent::matches($request)) { |
|
41 | 20 | 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 |