File manager - Edit - /var/www/payraty/helpdesk/vendor/rector/rector/vendor/rector/rector-nette/src/Rector/ClassMethod/MergeTemplateSetFileToTemplateRenderRector.php
Back
<?php declare (strict_types=1); namespace Rector\Nette\Rector\ClassMethod; use PhpParser\Node; use PhpParser\Node\Arg; use PhpParser\Node\Expr\MethodCall; use PhpParser\Node\Stmt\ClassMethod; use Rector\Core\Rector\AbstractRector; use Rector\Nette\NodeAnalyzer\NetteClassAnalyzer; use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample; use Symplify\RuleDocGenerator\ValueObject\RuleDefinition; /** * @see \Rector\Nette\Tests\Rector\ClassMethod\MergeTemplateSetFileToTemplateRenderRector\MergeTemplateSetFileToTemplateRenderRectorTest */ final class MergeTemplateSetFileToTemplateRenderRector extends AbstractRector { /** * @readonly * @var \Rector\Nette\NodeAnalyzer\NetteClassAnalyzer */ private $netteClassAnalyzer; public function __construct(NetteClassAnalyzer $netteClassAnalyzer) { $this->netteClassAnalyzer = $netteClassAnalyzer; } public function getRuleDefinition() : RuleDefinition { return new RuleDefinition('Change $this->template->setFile() $this->template->render()', [new CodeSample(<<<'CODE_SAMPLE' use Nette\Application\UI\Control; final class SomeControl extends Control { public function render() { $this->template->setFile(__DIR__ . '/someFile.latte'); $this->template->render(); } } CODE_SAMPLE , <<<'CODE_SAMPLE' use Nette\Application\UI\Control; final class SomeControl extends Control { public function render() { $this->template->render(__DIR__ . '/someFile.latte'); } } CODE_SAMPLE )]); } /** * @return array<class-string<Node>> */ public function getNodeTypes() : array { return [ClassMethod::class]; } /** * @param ClassMethod $node */ public function refactor(Node $node) : ?Node { if (!$this->netteClassAnalyzer->isInComponent($node)) { return null; } /** @var MethodCall[] $methodCalls */ $methodCalls = $this->betterNodeFinder->findInstanceOf((array) $node->stmts, MethodCall::class); $setFileMethodCall = $this->resolveSingleSetFileMethodCall($methodCalls); if (!$setFileMethodCall instanceof MethodCall) { return null; } foreach ($methodCalls as $methodCall) { if (!$this->isName($methodCall->name, 'render')) { continue; } if (isset($methodCall->args[0])) { continue; } $this->removeNode($setFileMethodCall); $methodCall->args[0] = new Arg($setFileMethodCall->args[0]->value); return $node; } return null; } /** * @param MethodCall[] $methodCalls */ private function resolveSingleSetFileMethodCall(array $methodCalls) : ?MethodCall { $singleSetFileMethodCall = null; foreach ($methodCalls as $methodCall) { if (!$this->isName($methodCall->name, 'setFile')) { continue; } if ($singleSetFileMethodCall instanceof MethodCall) { return null; } $singleSetFileMethodCall = $methodCall; } return $singleSetFileMethodCall; } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings