rector/rules/Php56/Rector/FuncCall/PowToExpRector.php

59 lines
1.4 KiB
PHP
Raw Normal View History

2019-10-13 05:59:52 +00:00
<?php
declare(strict_types=1);
2018-10-04 08:11:54 +00:00
namespace Rector\Php56\Rector\FuncCall;
2018-10-04 08:11:54 +00:00
use PhpParser\Node;
use PhpParser\Node\Expr\BinaryOp\Pow;
use PhpParser\Node\Expr\FuncCall;
use Rector\Core\Rector\AbstractRector;
use Rector\Core\ValueObject\PhpVersionFeature;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
2018-10-04 08:11:54 +00:00
2019-09-03 09:11:45 +00:00
/**
* @see \Rector\Tests\Php56\Rector\FuncCall\PowToExpRector\PowToExpRectorTest
2019-09-03 09:11:45 +00:00
*/
2018-10-04 08:11:54 +00:00
final class PowToExpRector extends AbstractRector
{
public function getRuleDefinition(): RuleDefinition
2018-10-04 08:11:54 +00:00
{
return new RuleDefinition(
2018-10-04 08:11:54 +00:00
'Changes pow(val, val2) to ** (exp) parameter',
[new CodeSample('pow(1, 2);', '1**2;')]
);
}
/**
* @return array<class-string<Node>>
2018-10-04 08:11:54 +00:00
*/
public function getNodeTypes(): array
{
return [FuncCall::class];
}
/**
* @param FuncCall $node
2018-10-04 08:11:54 +00:00
*/
public function refactor(Node $node): ?Node
2018-10-04 08:11:54 +00:00
{
2019-12-26 19:54:00 +00:00
if (! $this->isAtLeastPhpVersion(PhpVersionFeature::EXP_OPERATOR)) {
return null;
}
if (! $this->isName($node, 'pow')) {
return null;
2018-10-04 08:11:54 +00:00
}
if (count($node->args) !== 2) {
return null;
2018-10-04 08:11:54 +00:00
}
$firstArgument = $node->args[0]->value;
$secondArgument = $node->args[1]->value;
2018-10-04 08:11:54 +00:00
return new Pow($firstArgument, $secondArgument);
}
}