Conditions | 9 |
Paths | 10 |
Total Lines | 25 |
Lines | 0 |
Ratio | 0 % |
Tests | 14 |
CRAP Score | 9.1582 |
Changes | 0 |
1 | <?php |
||
20 | 4 | public function applyToNode(Node $node) |
|
21 | { |
||
22 | 4 | $instruction = $node->getInstruction($this); |
|
23 | |||
24 | 4 | if (is_array($instruction) || is_object($instruction)) { |
|
25 | 4 | $instruction = (object)$instruction; |
|
26 | 4 | } |
|
27 | |||
28 | 4 | if (!isset($instruction) || !isset($instruction->input)) { |
|
29 | return; |
||
30 | } |
||
31 | |||
32 | 4 | if (!isset($instruction->find) && !isset($instruction->regex)) { |
|
33 | return; |
||
34 | } |
||
35 | |||
36 | 4 | if (isset($instruction->find)) { |
|
37 | 2 | $result = strpos($instruction->input, $instruction->find) !== false; |
|
38 | 2 | } else { |
|
39 | 2 | $flags = isset($instruction->flags) ? $instruction->flags : 0; |
|
40 | 2 | $result = preg_match($instruction->regex, $instruction->input, $matches, $flags); |
|
41 | } |
||
42 | |||
43 | 4 | $node->setResult($result); |
|
44 | 4 | } |
|
45 | } |
||
46 |