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

66 lines
1.9 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\Arg;
use PhpParser\Node\Expr\BinaryOp\Pow;
use PhpParser\Node\Expr\FuncCall;
use Rector\Core\NodeAnalyzer\ArgsAnalyzer;
use Rector\Core\Rector\AbstractRector;
use Rector\Core\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
{
/**
* @readonly
* @var \Rector\Core\NodeAnalyzer\ArgsAnalyzer
*/
private $argsAnalyzer;
public function __construct(ArgsAnalyzer $argsAnalyzer)
{
$this->argsAnalyzer = $argsAnalyzer;
}
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 (\count($node->args) !== 2) {
return null;
2018-10-04 08:11:54 +00:00
}
if (!$this->argsAnalyzer->isArgsInstanceInArgsPositions($node->args, [0, 1])) {
return null;
}
/** @var Arg $firstArgument */
$firstArgument = $node->args[0];
/** @var Arg $secondArgument */
$secondArgument = $node->args[1];
return new Pow($firstArgument->value, $secondArgument->value);
2018-10-04 08:11:54 +00:00
}
public function provideMinPhpVersion() : int
{
return PhpVersionFeature::EXP_OPERATOR;
}
2018-10-04 08:11:54 +00:00
}