Conditions | 5 |
Paths | 3 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 5 |
Changes | 0 |
1 | <?php |
||
32 | 20 | public function matches(Request $request) |
|
33 | { |
||
34 | 20 | if (null !== $this->accept && $this->accept != $request->headers->get('accept', null)) { |
|
35 | 18 | return false; |
|
36 | } |
||
37 | |||
38 | 3 | if (null !== $this->method && $this->method != $request->getMethod()) { |
|
39 | 1 | return false; |
|
40 | } |
||
41 | |||
42 | 2 | return true; |
|
43 | } |
||
44 | } |
||
45 |