| Total Complexity | 8 |
| Total Lines | 36 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | final class FqcnNodeVisitor extends NodeVisitorAbstract |
||
| 15 | { |
||
| 16 | private ?string $namespace = null; |
||
| 17 | private ?string $objectName = null; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var null|class-string |
||
|
|
|||
| 21 | */ |
||
| 22 | private ?string $fqcn = null; |
||
| 23 | |||
| 24 | 1 | public function enterNode(Node $node) : int|Node|null |
|
| 42 | } |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @return null|class-string |
||
| 46 | */ |
||
| 47 | 1 | public function getFqcn() : ?string |
|
| 52 |