| Conditions | 4 |
| Paths | 4 |
| Total Lines | 20 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 43 | public function enterNode(Node $node) |
||
| 44 | { |
||
| 45 | if ($node instanceof Declare_) { |
||
| 46 | $this->declare[] = $node; |
||
| 47 | |||
| 48 | return null; |
||
| 49 | } |
||
| 50 | if ($node instanceof Use_) { |
||
| 51 | $this->use[] = $node; |
||
| 52 | |||
| 53 | return null; |
||
| 54 | } |
||
| 55 | if ($node instanceof Namespace_) { |
||
| 56 | $this->namespace = $node; |
||
| 57 | |||
| 58 | return null; |
||
| 59 | } |
||
| 60 | |||
| 61 | return $this->enterNodeClass($node); |
||
| 62 | } |
||
| 63 | |||
| 92 |