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

50 lines
1.4 KiB
PHP
Raw Normal View History

2019-10-13 05:59:52 +00:00
<?php
declare (strict_types=1);
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\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\Php56\Rector\FuncCall\PowToExpRector\PowToExpRectorTest
2019-09-03 09:11:45 +00:00
*/
final class PowToExpRector extends AbstractRector implements MinPhpVersionInterface
2018-10-04 08:11:54 +00:00
{
public function getRuleDefinition() : RuleDefinition
2018-10-04 08:11:54 +00:00
{
return new RuleDefinition('Changes pow(val, val2) to ** (exp) parameter', [new CodeSample('pow(1, 2);', '1**2;')]);
2018-10-04 08:11:54 +00:00
}
/**
* @return array<class-string<Node>>
2018-10-04 08:11:54 +00:00
*/
public function getNodeTypes() : array
2018-10-04 08:11:54 +00:00
{
return [FuncCall::class];
2018-10-04 08:11:54 +00:00
}
/**
* @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
{
if (!$this->isName($node, 'pow')) {
return null;
2018-10-04 08:11:54 +00:00
}
if ($node->isFirstClassCallable()) {
return null;
}
$firstExpr = $node->getArgs()[0]->value;
$secondExpr = $node->getArgs()[1]->value;
return new Pow($firstExpr, $secondExpr);
2018-10-04 08:11:54 +00:00
}
public function provideMinPhpVersion() : int
{
return PhpVersionFeature::EXP_OPERATOR;
}
2018-10-04 08:11:54 +00:00
}