rector/rules/Renaming/Rector/ConstFetch/RenameConstantRector.php
Tomas Votruba 1a5260ef5d Updated Rector to commit b8a527c07e
b8a527c07e DowngradeSelfTypeDeclarationRector: Fix example output (#1606)
2022-01-01 11:02:34 +00:00

83 lines
2.6 KiB
PHP

<?php
declare (strict_types=1);
namespace Rector\Renaming\Rector\ConstFetch;
use PhpParser\Node;
use PhpParser\Node\Expr\ConstFetch;
use PhpParser\Node\Name;
use Rector\Core\Contract\Rector\ConfigurableRectorInterface;
use Rector\Core\Rector\AbstractRector;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\ConfiguredCodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
use RectorPrefix20220101\Webmozart\Assert\Assert;
/**
* @see \Rector\Tests\Renaming\Rector\ConstFetch\RenameConstantRector\RenameConstantRectorTest
*/
final class RenameConstantRector extends \Rector\Core\Rector\AbstractRector implements \Rector\Core\Contract\Rector\ConfigurableRectorInterface
{
/**
* @deprecated
* @var string
*/
public const OLD_TO_NEW_CONSTANTS = 'old_to_new_constants';
/**
* @var array<string, string>
*/
private $oldToNewConstants = [];
public function getRuleDefinition() : \Symplify\RuleDocGenerator\ValueObject\RuleDefinition
{
return new \Symplify\RuleDocGenerator\ValueObject\RuleDefinition('Replace constant by new ones', [new \Symplify\RuleDocGenerator\ValueObject\CodeSample\ConfiguredCodeSample(<<<'CODE_SAMPLE'
final class SomeClass
{
public function run()
{
return MYSQL_ASSOC;
}
}
CODE_SAMPLE
, <<<'CODE_SAMPLE'
final class SomeClass
{
public function run()
{
return MYSQLI_ASSOC;
}
}
CODE_SAMPLE
, ['MYSQL_ASSOC' => 'MYSQLI_ASSOC', 'OLD_CONSTANT' => 'NEW_CONSTANT'])]);
}
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes() : array
{
return [\PhpParser\Node\Expr\ConstFetch::class];
}
/**
* @param ConstFetch $node
*/
public function refactor(\PhpParser\Node $node) : ?\PhpParser\Node
{
foreach ($this->oldToNewConstants as $oldConstant => $newConstant) {
if (!$this->isName($node->name, $oldConstant)) {
continue;
}
$node->name = new \PhpParser\Node\Name($newConstant);
return $node;
}
return null;
}
/**
* @param mixed[] $configuration
*/
public function configure(array $configuration) : void
{
$oldToNewConstants = $configuration[self::OLD_TO_NEW_CONSTANTS] ?? $configuration;
\RectorPrefix20220101\Webmozart\Assert\Assert::allString(\array_keys($oldToNewConstants));
\RectorPrefix20220101\Webmozart\Assert\Assert::allString($oldToNewConstants);
/** @var array<string, string> $oldToNewConstants */
$this->oldToNewConstants = $oldToNewConstants;
}
}