rector/rules/DowngradePhp70/Rector/Expression/DowngradeDefineArrayConstantRector.php
Tomas Votruba 816016aac7 Updated Rector to commit 294bea2d18
294bea2d18 [FileProcessor] Run untill the file is fixed completelly (#432)
2021-07-15 03:40:51 +00:00

90 lines
2.8 KiB
PHP

<?php
declare (strict_types=1);
namespace Rector\DowngradePhp70\Rector\Expression;
use PhpParser\Node;
use PhpParser\Node\Const_;
use PhpParser\Node\Expr\Array_;
use PhpParser\Node\Expr\FuncCall;
use PhpParser\Node\Scalar\String_;
use PhpParser\Node\Stmt\ClassMethod;
use PhpParser\Node\Stmt\Expression;
use PhpParser\Node\Stmt\Function_;
use Rector\Core\Rector\AbstractRector;
use Rector\NodeNestingScope\ParentFinder;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @see \Rector\Tests\DowngradePhp70\Rector\Expression\DowngradeDefineArrayConstantRector\DowngradeDefineArrayConstantRectorTest
*/
final class DowngradeDefineArrayConstantRector extends \Rector\Core\Rector\AbstractRector
{
/**
* @var \Rector\NodeNestingScope\ParentFinder
*/
private $parentFinder;
public function __construct(\Rector\NodeNestingScope\ParentFinder $parentFinder)
{
$this->parentFinder = $parentFinder;
}
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes() : array
{
return [\PhpParser\Node\Stmt\Expression::class];
}
public function getRuleDefinition() : \Symplify\RuleDocGenerator\ValueObject\RuleDefinition
{
return new \Symplify\RuleDocGenerator\ValueObject\RuleDefinition('Change array contant definition via define to const', [new \Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample(<<<'CODE_SAMPLE'
define('ANIMALS', [
'dog',
'cat',
'bird'
]);
CODE_SAMPLE
, <<<'CODE_SAMPLE'
const ANIMALS = [
'dog',
'cat',
'bird'
];
CODE_SAMPLE
)]);
}
/**
* @param Expression $node
*/
public function refactor(\PhpParser\Node $node) : ?\PhpParser\Node
{
if (!$node->expr instanceof \PhpParser\Node\Expr\FuncCall) {
return null;
}
$funcCall = $node->expr;
if ($this->shouldSkip($funcCall)) {
return null;
}
/** @var String_ $arg0 */
$arg0 = $funcCall->args[0]->value;
$arg0Value = $arg0->value;
/** @var Array_ $arg1Value */
$arg1Value = $funcCall->args[1]->value;
return new \PhpParser\Node\Stmt\Const_([new \PhpParser\Node\Const_($arg0Value, $arg1Value)]);
}
private function shouldSkip(\PhpParser\Node\Expr\FuncCall $funcCall) : bool
{
if (!$this->isName($funcCall, 'define')) {
return \true;
}
$args = $funcCall->args;
if (!$args[0]->value instanceof \PhpParser\Node\Scalar\String_) {
return \true;
}
if (!$args[1]->value instanceof \PhpParser\Node\Expr\Array_) {
return \true;
}
return (bool) $this->parentFinder->findByTypes($funcCall, [\PhpParser\Node\Stmt\ClassMethod::class, \PhpParser\Node\Stmt\Function_::class]);
}
}