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

66 lines
2.1 KiB
PHP
Raw Normal View History

2019-10-13 05:59:52 +00:00
<?php
declare (strict_types=1);
2022-06-06 16:43:29 +00:00
namespace RectorPrefix20220606\Rector\Php56\Rector\FuncCall;
2018-10-04 08:11:54 +00:00
2022-06-06 16:43:29 +00:00
use RectorPrefix20220606\PhpParser\Node;
use RectorPrefix20220606\PhpParser\Node\Arg;
use RectorPrefix20220606\PhpParser\Node\Expr\BinaryOp\Pow;
use RectorPrefix20220606\PhpParser\Node\Expr\FuncCall;
use RectorPrefix20220606\Rector\Core\NodeAnalyzer\ArgsAnalyzer;
use RectorPrefix20220606\Rector\Core\Rector\AbstractRector;
use RectorPrefix20220606\Rector\Core\ValueObject\PhpVersionFeature;
use RectorPrefix20220606\Rector\VersionBonding\Contract\MinPhpVersionInterface;
use RectorPrefix20220606\Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use RectorPrefix20220606\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
*/
2022-06-06 16:43:29 +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;
2022-06-06 16:43:29 +00:00
public function __construct(ArgsAnalyzer $argsAnalyzer)
{
$this->argsAnalyzer = $argsAnalyzer;
}
2022-06-06 16:43:29 +00:00
public function getRuleDefinition() : RuleDefinition
2018-10-04 08:11:54 +00:00
{
2022-06-06 16:43:29 +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
{
2022-06-06 16:43:29 +00:00
return [FuncCall::class];
2018-10-04 08:11:54 +00:00
}
/**
* @param FuncCall $node
2018-10-04 08:11:54 +00:00
*/
2022-06-06 16:43:29 +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];
2022-06-06 16:43:29 +00:00
return new Pow($firstArgument->value, $secondArgument->value);
2018-10-04 08:11:54 +00:00
}
public function provideMinPhpVersion() : int
{
2022-06-06 16:43:29 +00:00
return PhpVersionFeature::EXP_OPERATOR;
}
2018-10-04 08:11:54 +00:00
}