rector/rules/Php70/Rector/FuncCall/CallUserMethodRector.php

63 lines
2.1 KiB
PHP
Raw Normal View History

2019-10-13 05:59:52 +00:00
<?php
declare (strict_types=1);
namespace Rector\Php70\Rector\FuncCall;
2018-10-07 13:38:35 +00:00
use PhpParser\Node;
use PhpParser\Node\Arg;
use PhpParser\Node\Expr\FuncCall;
use PhpParser\Node\Name;
use Rector\Rector\AbstractRector;
use Rector\ValueObject\PhpVersionFeature;
use Rector\VersionBonding\Contract\MinPhpVersionInterface;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
2019-09-03 09:11:45 +00:00
/**
* @see \Rector\Tests\Php70\Rector\FuncCall\CallUserMethodRector\CallUserMethodRectorTest
2019-09-03 09:11:45 +00:00
*/
final class CallUserMethodRector extends AbstractRector implements MinPhpVersionInterface
2018-10-07 13:38:35 +00:00
{
/**
* @var array<string, string>
2018-10-07 13:38:35 +00:00
*/
private const OLD_TO_NEW_FUNCTIONS = ['call_user_method' => 'call_user_func', 'call_user_method_array' => 'call_user_func_array'];
public function provideMinPhpVersion() : int
{
return PhpVersionFeature::NO_CALL_USER_METHOD;
}
public function getRuleDefinition() : RuleDefinition
2018-10-07 13:38:35 +00:00
{
return new RuleDefinition('Changes call_user_method()/call_user_method_array() to call_user_func()/call_user_func_array()', [new CodeSample('call_user_method($method, $obj, "arg1", "arg2");', 'call_user_func(array(&$obj, "method"), "arg1", "arg2");')]);
2018-10-07 13:38:35 +00:00
}
/**
* @return array<class-string<Node>>
2018-10-07 13:38:35 +00:00
*/
public function getNodeTypes() : array
2018-10-07 13:38:35 +00:00
{
return [FuncCall::class];
2018-10-07 13:38:35 +00:00
}
/**
* @param FuncCall $node
2018-10-07 13:38:35 +00:00
*/
public function refactor(Node $node) : ?Node
2018-10-07 13:38:35 +00:00
{
$oldFunctionNames = \array_keys(self::OLD_TO_NEW_FUNCTIONS);
if (!$this->isNames($node, $oldFunctionNames)) {
return null;
2018-10-07 13:38:35 +00:00
}
if ($node->isFirstClassCallable()) {
return null;
}
2020-02-18 22:09:25 +00:00
$newName = self::OLD_TO_NEW_FUNCTIONS[$this->getName($node)];
$node->name = new Name($newName);
/** @var Arg[] $oldArgs */
$oldArgs = $node->args;
unset($node->args[1]);
2021-01-30 21:41:25 +00:00
$newArgs = [$this->nodeFactory->createArg([$oldArgs[1]->value, $oldArgs[0]->value])];
unset($oldArgs[0]);
unset($oldArgs[1]);
$node->args = \array_merge($newArgs, $oldArgs);
return $node;
2018-10-07 13:38:35 +00:00
}
}