| Total Complexity | 9 |
| Total Lines | 40 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | final class FqcnNodeVisitor extends NodeVisitorAbstract |
||
| 16 | { |
||
| 17 | private ?string $namespace = null; |
||
| 18 | private ?string $className = null; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @var null|class-string |
||
|
|
|||
| 22 | */ |
||
| 23 | private ?string $fqcn = null; |
||
| 24 | |||
| 25 | 1 | public function enterNode(Node $node) : null|array|int|Node |
|
| 47 | } |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @return null|class-string |
||
| 51 | */ |
||
| 52 | 1 | public function getFqcn() : ?string |
|
| 57 |