rector/rules/Php72/Rector/FuncCall/StringifyDefineRector.php

94 lines
2.5 KiB
PHP
Raw Permalink Normal View History

2019-10-13 05:59:52 +00:00
<?php
declare (strict_types=1);
namespace Rector\Php72\Rector\FuncCall;
2019-02-26 00:15:36 +00:00
use PhpParser\Node;
use PhpParser\Node\Expr\ConstFetch;
use PhpParser\Node\Expr\FuncCall;
use PhpParser\Node\Scalar\String_;
use Rector\NodeTypeResolver\TypeAnalyzer\StringTypeAnalyzer;
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-02-26 00:15:36 +00:00
/**
* @changelog https://3v4l.org/YiTeP
* @see \Rector\Tests\Php72\Rector\FuncCall\StringifyDefineRector\StringifyDefineRectorTest
2019-02-26 00:15:36 +00:00
*/
final class StringifyDefineRector extends AbstractRector implements MinPhpVersionInterface
2019-02-26 00:15:36 +00:00
{
/**
* @readonly
* @var \Rector\NodeTypeResolver\TypeAnalyzer\StringTypeAnalyzer
*/
private $stringTypeAnalyzer;
public function __construct(StringTypeAnalyzer $stringTypeAnalyzer)
{
$this->stringTypeAnalyzer = $stringTypeAnalyzer;
}
public function provideMinPhpVersion() : int
{
return PhpVersionFeature::STRING_IN_FIRST_DEFINE_ARG;
}
public function getRuleDefinition() : RuleDefinition
2019-02-26 00:15:36 +00:00
{
return new RuleDefinition('Make first argument of define() string', [new CodeSample(<<<'CODE_SAMPLE'
2019-02-26 00:15:36 +00:00
class SomeClass
{
public function run(int $a)
{
define(CONSTANT_2, 'value');
define('CONSTANT', 'value');
}
}
CODE_SAMPLE
, <<<'CODE_SAMPLE'
2019-02-26 00:15:36 +00:00
class SomeClass
{
public function run(int $a)
{
define('CONSTANT_2', 'value');
define('CONSTANT', 'value');
}
}
CODE_SAMPLE
)]);
2019-02-26 00:15:36 +00:00
}
/**
* @return array<class-string<Node>>
2019-02-26 00:15:36 +00:00
*/
public function getNodeTypes() : array
2019-02-26 00:15:36 +00:00
{
return [FuncCall::class];
2019-02-26 00:15:36 +00:00
}
/**
* @param FuncCall $node
2019-02-26 00:15:36 +00:00
*/
public function refactor(Node $node) : ?Node
2019-02-26 00:15:36 +00:00
{
if (!$this->isName($node, 'define')) {
2019-02-26 00:15:36 +00:00
return null;
}
if ($node->isFirstClassCallable()) {
return null;
}
if (!isset($node->getArgs()[0])) {
return null;
}
$firstArg = $node->getArgs()[0];
if ($this->stringTypeAnalyzer->isStringOrUnionStringOnlyType($firstArg->value)) {
return null;
}
if ($firstArg->value instanceof ConstFetch) {
$nodeName = $this->getName($firstArg->value);
2019-02-26 00:15:36 +00:00
if ($nodeName === null) {
return null;
}
$firstArg->value = new String_($nodeName);
2019-02-26 00:15:36 +00:00
}
return $node;
}
}