rector/rules/code-quality/src/Rector/FuncCall/SimplifyFuncGetArgsCountRector.php

57 lines
1.4 KiB
PHP
Raw Normal View History

2019-10-13 05:59:52 +00:00
<?php
declare(strict_types=1);
namespace Rector\CodeQuality\Rector\FuncCall;
use PhpParser\Node;
use PhpParser\Node\Expr\FuncCall;
use Rector\Core\Rector\AbstractRector;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
2019-09-03 09:11:45 +00:00
/**
* @see \Rector\CodeQuality\Tests\Rector\FuncCall\SimplifyFuncGetArgsCountRector\SimplifyFuncGetArgsCountRectorTest
*/
final class SimplifyFuncGetArgsCountRector extends AbstractRector
{
public function getRuleDefinition(): RuleDefinition
{
return new RuleDefinition(
2020-06-16 14:39:45 +00:00
'Simplify count of func_get_args() to func_num_args()',
[new CodeSample('count(func_get_args());', 'func_num_args();')]
);
}
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes(): array
{
return [FuncCall::class];
}
/**
* @param FuncCall $node
*/
public function refactor(Node $node): ?Node
{
2018-10-15 04:13:42 +00:00
if (! $this->isName($node, 'count')) {
return null;
}
if (! $node->args[0]->value instanceof FuncCall) {
return null;
}
/** @var FuncCall $innerFuncCall */
$innerFuncCall = $node->args[0]->value;
2018-10-15 04:13:42 +00:00
if (! $this->isName($innerFuncCall, 'func_get_args')) {
return $node;
}
2021-01-30 21:41:25 +00:00
return $this->nodeFactory->createFuncCall('func_num_args');
}
}