rector/rules/CodingStyle/Rector/FuncCall/ConsistentImplodeRector.php
Tomas Votruba cdc3b7adef Updated Rector to commit f451b0b8e1
f451b0b8e1 [PHP 8.0] Bump to promoted properties (#4)
2021-05-10 23:39:21 +00:00

88 lines
2.8 KiB
PHP

<?php
declare (strict_types=1);
namespace Rector\CodingStyle\Rector\FuncCall;
use PhpParser\Node;
use PhpParser\Node\Arg;
use PhpParser\Node\Expr\FuncCall;
use PhpParser\Node\Scalar\String_;
use Rector\Core\Rector\AbstractRector;
use Rector\NodeTypeResolver\TypeAnalyzer\StringTypeAnalyzer;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @changelog http://php.net/manual/en/function.implode.php#refsect1-function.implode-description
* @see https://3v4l.org/iYTgh
* @see \Rector\Tests\CodingStyle\Rector\FuncCall\ConsistentImplodeRector\ConsistentImplodeRectorTest
*/
final class ConsistentImplodeRector extends \Rector\Core\Rector\AbstractRector
{
/**
* @var \Rector\NodeTypeResolver\TypeAnalyzer\StringTypeAnalyzer
*/
private $stringTypeAnalyzer;
public function __construct(\Rector\NodeTypeResolver\TypeAnalyzer\StringTypeAnalyzer $stringTypeAnalyzer)
{
$this->stringTypeAnalyzer = $stringTypeAnalyzer;
}
public function getRuleDefinition() : \Symplify\RuleDocGenerator\ValueObject\RuleDefinition
{
return new \Symplify\RuleDocGenerator\ValueObject\RuleDefinition('Changes various implode forms to consistent one', [new \Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample(<<<'CODE_SAMPLE'
class SomeClass
{
public function run(array $items)
{
$itemsAsStrings = implode($items);
$itemsAsStrings = implode($items, '|');
$itemsAsStrings = implode('|', $items);
}
}
CODE_SAMPLE
, <<<'CODE_SAMPLE'
class SomeClass
{
public function run(array $items)
{
$itemsAsStrings = implode('', $items);
$itemsAsStrings = implode('|', $items);
$itemsAsStrings = implode('|', $items);
}
}
CODE_SAMPLE
)]);
}
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes() : array
{
return [\PhpParser\Node\Expr\FuncCall::class];
}
/**
* @param FuncCall $node
*/
public function refactor(\PhpParser\Node $node) : ?\PhpParser\Node
{
if (!$this->isName($node, 'implode')) {
return null;
}
if (\count($node->args) === 1) {
// complete default value ''
$node->args[1] = $node->args[0];
$node->args[0] = new \PhpParser\Node\Arg(new \PhpParser\Node\Scalar\String_(''));
return $node;
}
$firstArgumentValue = $node->args[0]->value;
if ($firstArgumentValue instanceof \PhpParser\Node\Scalar\String_) {
return null;
}
if (\count($node->args) === 2 && $this->stringTypeAnalyzer->isStringOrUnionStringOnlyType($node->args[1]->value)) {
$node->args = \array_reverse($node->args);
}
return $node;
}
}