Conditions | 4 |
Paths | 4 |
Total Lines | 14 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
25 | public function match(Request $request, Element $config) |
||
26 | { |
||
27 | if (!count($this->matchingPolicies)) { |
||
28 | return false; |
||
29 | } |
||
30 | |||
31 | foreach ($this->matchingPolicies as $matchingPolicy) { |
||
32 | if (!$matchingPolicy->match($request, $config)) { |
||
33 | return false; |
||
34 | } |
||
35 | } |
||
36 | |||
37 | return true; |
||
38 | } |
||
39 | |||
48 |