Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 2 |
Lines | 0 |
Ratio | 0 % |
Tests | 3 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
22 | 4 | public function process(Node $parent, Name $name, ClassDependencies $classDependencies): ?Fqn |
|
23 | { |
||
24 | /** @var ImportedFqn $importedFqn */ |
||
25 | 4 | $importedFqn = $classDependencies->getImportedFqnHavingLastPart($name->parts[0]); |
|
26 | |||
27 | 4 | return $this->createInlineFqnBasedOnImportedFqn($importedFqn, $name); |
|
28 | } |
||
30 |