Conditions | 5 |
Paths | 4 |
Total Lines | 12 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
34 | public function enterNode(Node $node) |
||
35 | { |
||
36 | /** |
||
37 | * @todo UseUse should not be skipped if part of FullyQualified sub-section |
||
38 | */ |
||
39 | if ($node instanceof UseUse && in_array((string) $node->name, $this->reserved)) { |
||
40 | $node->setAttribute('phpscoper_ignore', true); |
||
41 | } |
||
42 | if ($node instanceof FullyQualified && in_array((string) $node, $this->reserved)) { |
||
43 | $node->setAttribute('phpscoper_ignore', true); |
||
44 | } |
||
45 | } |
||
46 | } |
||
47 |