rector/rules/Renaming/Rector/StaticCall/RenameStaticMethodRector.php

115 lines
3.4 KiB
PHP
Raw Normal View History

2019-10-13 05:59:52 +00:00
<?php
declare(strict_types=1);
namespace Rector\Renaming\Rector\StaticCall;
use PhpParser\Node;
use PhpParser\Node\Expr\StaticCall;
use PhpParser\Node\Identifier;
use PhpParser\Node\Name\FullyQualified;
2020-07-29 13:55:33 +00:00
use Rector\Core\Contract\Rector\ConfigurableRectorInterface;
use Rector\Core\Rector\AbstractRector;
use Rector\Renaming\ValueObject\RenameStaticMethod;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\ConfiguredCodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
use Webmozart\Assert\Assert;
2019-09-03 09:11:45 +00:00
/**
* @see \Rector\Tests\Renaming\Rector\StaticCall\RenameStaticMethodRector\RenameStaticMethodRectorTest
2019-09-03 09:11:45 +00:00
*/
2020-07-29 13:55:33 +00:00
final class RenameStaticMethodRector extends AbstractRector implements ConfigurableRectorInterface
{
/**
2020-07-29 13:55:33 +00:00
* @var string
*/
public const OLD_TO_NEW_METHODS_BY_CLASSES = 'old_to_new_method_by_classes';
/**
* @var string
*/
private const SOME_CLASS = 'SomeClass';
/**
* @var RenameStaticMethod[]
*/
private $staticMethodRenames = [];
public function getRuleDefinition(): RuleDefinition
{
$renameClassConfiguration = [
self::OLD_TO_NEW_METHODS_BY_CLASSES => [
new RenameStaticMethod(self::SOME_CLASS, 'oldMethod', 'AnotherExampleClass', 'newStaticMethod'),
],
];
$renameMethodConfiguration = [
self::OLD_TO_NEW_METHODS_BY_CLASSES => [
new RenameStaticMethod(self::SOME_CLASS, 'oldMethod', self::SOME_CLASS, 'newStaticMethod'),
],
];
return new RuleDefinition('Turns method names to new ones.', [
2018-10-22 18:12:32 +00:00
new ConfiguredCodeSample(
'SomeClass::oldStaticMethod();',
'AnotherExampleClass::newStaticMethod();',
$renameClassConfiguration
2018-10-22 18:12:32 +00:00
),
new ConfiguredCodeSample(
'SomeClass::oldStaticMethod();',
'SomeClass::newStaticMethod();',
$renameMethodConfiguration
),
]);
}
2018-08-14 22:12:41 +00:00
/**
* @return array<class-string<Node>>
2018-08-14 22:12:41 +00:00
*/
public function getNodeTypes(): array
{
2018-10-22 18:12:32 +00:00
return [StaticCall::class];
}
/**
2018-10-22 18:12:32 +00:00
* @param StaticCall $node
*/
public function refactor(Node $node): ?Node
{
foreach ($this->staticMethodRenames as $staticMethodRename) {
if (! $this->isObjectType($node->class, $staticMethodRename->getOldObjectType())) {
2018-10-22 18:12:32 +00:00
continue;
}
if (! $this->isName($node->name, $staticMethodRename->getOldMethod())) {
continue;
}
return $this->rename($node, $staticMethodRename);
}
2018-10-22 18:12:32 +00:00
return null;
}
/**
* @param array<string, RenameStaticMethod[]> $configuration
*/
2020-07-29 13:55:33 +00:00
public function configure(array $configuration): void
{
$oldToNewMethodsByClasses = $configuration[self::OLD_TO_NEW_METHODS_BY_CLASSES];
Assert::allIsInstanceOf($oldToNewMethodsByClasses, RenameStaticMethod::class);
$this->staticMethodRenames = $oldToNewMethodsByClasses;
2020-07-29 13:55:33 +00:00
}
private function rename(StaticCall $staticCall, RenameStaticMethod $renameStaticMethod): StaticCall
{
$staticCall->name = new Identifier($renameStaticMethod->getNewMethod());
if ($renameStaticMethod->hasClassChanged()) {
$staticCall->class = new FullyQualified($renameStaticMethod->getNewClass());
}
2019-02-22 17:25:31 +00:00
return $staticCall;
}
}