File manager - Edit - /var/www/payraty/helpdesk/vendor/rector/rector/vendor/rector/rector-cakephp/src/Rector/MethodCall/RenameMethodCallBasedOnParameterRector.php
Back
<?php declare (strict_types=1); namespace Rector\CakePHP\Rector\MethodCall; use PhpParser\Node; use PhpParser\Node\Expr\MethodCall; use PhpParser\Node\Identifier; use Rector\CakePHP\ValueObject\RenameMethodCallBasedOnParameter; use Rector\Core\Contract\Rector\ConfigurableRectorInterface; use Rector\Core\Rector\AbstractRector; use Symplify\RuleDocGenerator\ValueObject\CodeSample\ConfiguredCodeSample; use Symplify\RuleDocGenerator\ValueObject\RuleDefinition; use RectorPrefix202208\Webmozart\Assert\Assert; /** * @see https://book.cakephp.org/4.0/en/appendices/4-0-migration-guide.html * @see https://github.com/cakephp/cakephp/commit/77017145961bb697b4256040b947029259f66a9b * * @see \Rector\CakePHP\Tests\Rector\MethodCall\RenameMethodCallBasedOnParameterRector\RenameMethodCallBasedOnParameterRectorTest */ final class RenameMethodCallBasedOnParameterRector extends AbstractRector implements ConfigurableRectorInterface { /** * @var string */ public const CALLS_WITH_PARAM_RENAMES = 'calls_with_param_renames'; /** * @var RenameMethodCallBasedOnParameter[] */ private $callsWithParamRenames = []; public function getRuleDefinition() : RuleDefinition { $configuration = [self::CALLS_WITH_PARAM_RENAMES => [new RenameMethodCallBasedOnParameter('ServerRequest', 'getParam', 'paging', 'getAttribute'), new RenameMethodCallBasedOnParameter('ServerRequest', 'withParam', 'paging', 'withAttribute')]]; return new RuleDefinition('Changes method calls based on matching the first parameter value.', [new ConfiguredCodeSample(<<<'CODE_SAMPLE' $object = new ServerRequest(); $config = $object->getParam('paging'); $object = $object->withParam('paging', ['a value']); CODE_SAMPLE , <<<'CODE_SAMPLE' $object = new ServerRequest(); $config = $object->getAttribute('paging'); $object = $object->withAttribute('paging', ['a value']); CODE_SAMPLE , $configuration)]); } /** * @return array<class-string<Node>> */ public function getNodeTypes() : array { return [MethodCall::class]; } /** * @param MethodCall $node */ public function refactor(Node $node) : ?Node { $renameMethodCallBasedOnParameter = $this->matchTypeAndMethodName($node); if (!$renameMethodCallBasedOnParameter instanceof RenameMethodCallBasedOnParameter) { return null; } $node->name = new Identifier($renameMethodCallBasedOnParameter->getNewMethod()); return $node; } /** * @param mixed[] $configuration */ public function configure(array $configuration) : void { $callsWithParamRenames = $configuration[self::CALLS_WITH_PARAM_RENAMES] ?? $configuration; Assert::isArray($callsWithParamRenames); Assert::allIsInstanceOf($callsWithParamRenames, RenameMethodCallBasedOnParameter::class); $this->callsWithParamRenames = $callsWithParamRenames; } private function matchTypeAndMethodName(MethodCall $methodCall) : ?RenameMethodCallBasedOnParameter { if (\count($methodCall->args) < 1) { return null; } $firstArgValue = $methodCall->args[0]->value; foreach ($this->callsWithParamRenames as $callWithParamRename) { if (!$this->isObjectType($methodCall->var, $callWithParamRename->getOldObjectType())) { continue; } if (!$this->isName($methodCall->name, $callWithParamRename->getOldMethod())) { continue; } if (!$this->valueResolver->isValue($firstArgValue, $callWithParamRename->getParameterName())) { continue; } return $callWithParamRename; } return null; } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings