rector/rules/Php54/Rector/FuncCall/RemoveReferenceFromCallRector.php

77 lines
2.0 KiB
PHP
Raw Normal View History

2019-10-13 05:59:52 +00:00
<?php
declare (strict_types=1);
namespace Rector\Php54\Rector\FuncCall;
2019-02-20 00:04:27 +00:00
use PhpParser\Node;
use PhpParser\Node\Arg;
use PhpParser\Node\Expr\FuncCall;
use PhpParser\Node\Expr\MethodCall;
use PhpParser\Node\Expr\StaticCall;
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\Php54\Rector\FuncCall\RemoveReferenceFromCallRector\RemoveReferenceFromCallRectorTest
2019-09-03 09:11:45 +00:00
*/
final class RemoveReferenceFromCallRector extends AbstractRector implements MinPhpVersionInterface
2019-02-20 00:04:27 +00:00
{
public function provideMinPhpVersion() : int
{
return PhpVersionFeature::NO_REFERENCE_IN_ARG;
}
public function getRuleDefinition() : RuleDefinition
2019-02-20 00:04:27 +00:00
{
return new RuleDefinition('Remove & from function and method calls', [new CodeSample(<<<'CODE_SAMPLE'
2019-02-20 00:04:27 +00:00
final class SomeClass
{
public function run($one)
{
return strlen(&$one);
}
}
CODE_SAMPLE
, <<<'CODE_SAMPLE'
2019-02-20 00:04:27 +00:00
final class SomeClass
{
public function run($one)
{
return strlen($one);
}
}
CODE_SAMPLE
)]);
2019-02-20 00:04:27 +00:00
}
/**
* @return array<class-string<Node>>
2019-02-20 00:04:27 +00:00
*/
public function getNodeTypes() : array
2019-02-20 00:04:27 +00:00
{
return [FuncCall::class, MethodCall::class, StaticCall::class];
2019-02-20 00:04:27 +00:00
}
/**
* @param FuncCall|MethodCall|StaticCall $node
* @return \PhpParser\Node\Expr\FuncCall|\PhpParser\Node\Expr\MethodCall|\PhpParser\Node\Expr\StaticCall|null
2019-02-20 00:04:27 +00:00
*/
public function refactor(Node $node)
2019-02-20 00:04:27 +00:00
{
$hasChanged = \false;
2019-02-20 00:04:27 +00:00
foreach ($node->args as $nodeArg) {
if (!$nodeArg instanceof Arg) {
continue;
}
if (!$nodeArg->byRef) {
continue;
2019-02-20 00:04:27 +00:00
}
$nodeArg->byRef = \false;
$hasChanged = \true;
}
if ($hasChanged) {
return $node;
2019-02-20 00:04:27 +00:00
}
return null;
2019-02-20 00:04:27 +00:00
}
}