File manager - Edit - /var/www/payraty/helpdesk/vendor/rector/rector/rules/Restoration/Rector/Namespace_/CompleteImportForPartialAnnotationRector.php
Back
<?php declare (strict_types=1); namespace Rector\Restoration\Rector\Namespace_; use PhpParser\Node; use PhpParser\Node\Stmt; use PhpParser\Node\Stmt\Class_; use PhpParser\Node\Stmt\Namespace_; use PhpParser\Node\Stmt\Use_; use Rector\Core\Contract\PhpParser\NodePrinterInterface; use Rector\Core\Contract\Rector\ConfigurableRectorInterface; use Rector\Core\Rector\AbstractRector; use Rector\Core\Util\StringUtils; use Rector\Restoration\ValueObject\CompleteImportForPartialAnnotation; use RectorPrefix202208\Symplify\Astral\ValueObject\NodeBuilder\UseBuilder; use Symplify\RuleDocGenerator\ValueObject\CodeSample\ConfiguredCodeSample; use Symplify\RuleDocGenerator\ValueObject\RuleDefinition; use RectorPrefix202208\Webmozart\Assert\Assert; /** * @see \Rector\Tests\Restoration\Rector\Namespace_\CompleteImportForPartialAnnotationRector\CompleteImportForPartialAnnotationRectorTest */ final class CompleteImportForPartialAnnotationRector extends AbstractRector implements ConfigurableRectorInterface { /** * @var CompleteImportForPartialAnnotation[] */ private $useImportsToRestore = []; /** * @readonly * @var \Rector\Core\Contract\PhpParser\NodePrinterInterface */ private $nodePrinter; public function __construct(NodePrinterInterface $nodePrinter) { $this->nodePrinter = $nodePrinter; } public function getRuleDefinition() : RuleDefinition { return new RuleDefinition('In case you have accidentally removed use imports but code still contains partial use statements, this will save you', [new ConfiguredCodeSample(<<<'CODE_SAMPLE' class SomeClass { /** * @ORM\Id */ public $id; } CODE_SAMPLE , <<<'CODE_SAMPLE' use Doctrine\ORM\Mapping as ORM; class SomeClass { /** * @ORM\Id */ public $id; } CODE_SAMPLE , [new CompleteImportForPartialAnnotation('Doctrine\\ORM\\Mapping', 'ORM')])]); } /** * @return array<class-string<Node>> */ public function getNodeTypes() : array { return [Namespace_::class]; } /** * @param Namespace_ $node */ public function refactor(Node $node) : ?Node { $class = $this->betterNodeFinder->findFirstInstanceOf($node->stmts, Class_::class); if (!$class instanceof Class_) { return null; } $printedClass = $this->nodePrinter->print($class); $hasChanged = \false; foreach ($this->useImportsToRestore as $useImportToRestore) { $annotationToSeek = '#\\*\\s+\\@' . $useImportToRestore->getAlias() . '#'; if (!StringUtils::isMatch($printedClass, $annotationToSeek)) { continue; } $node = $this->addImportToNamespaceIfMissing($node, $useImportToRestore); $hasChanged = \true; } if (!$hasChanged) { return null; } return $node; } /** * @param mixed[] $configuration */ public function configure(array $configuration) : void { Assert::allIsAOf($configuration, CompleteImportForPartialAnnotation::class); $default = [new CompleteImportForPartialAnnotation('Doctrine\\ORM\\Mapping', 'ORM'), new CompleteImportForPartialAnnotation('Symfony\\Component\\Validator\\Constraints', 'Assert'), new CompleteImportForPartialAnnotation('JMS\\Serializer\\Annotation', 'Serializer')]; $this->useImportsToRestore = \array_merge($configuration, $default); } private function addImportToNamespaceIfMissing(Namespace_ $namespace, CompleteImportForPartialAnnotation $completeImportForPartialAnnotation) : Namespace_ { foreach ($namespace->stmts as $stmt) { if (!$stmt instanceof Use_) { continue; } $useUse = $stmt->uses[0]; // already there if (!$this->isName($useUse->name, $completeImportForPartialAnnotation->getUse())) { continue; } if ((string) $useUse->alias !== $completeImportForPartialAnnotation->getAlias()) { continue; } return $namespace; } return $this->addImportToNamespace($namespace, $completeImportForPartialAnnotation); } private function addImportToNamespace(Namespace_ $namespace, CompleteImportForPartialAnnotation $completeImportForPartialAnnotation) : Namespace_ { $useBuilder = new UseBuilder($completeImportForPartialAnnotation->getUse()); if ($completeImportForPartialAnnotation->getAlias() !== '') { $useBuilder->as($completeImportForPartialAnnotation->getAlias()); } /** @var Stmt $use */ $use = $useBuilder->getNode(); $namespace->stmts = \array_merge([$use], $namespace->stmts); return $namespace; } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings