rector/packages/CodeQuality/src/Rector/FuncCall/SimplifyStrposLowerRector.php

63 lines
1.5 KiB
PHP
Raw Normal View History

<?php declare(strict_types=1);
namespace Rector\CodeQuality\Rector\FuncCall;
use PhpParser\Node;
use PhpParser\Node\Expr\FuncCall;
use PhpParser\Node\Name;
use Rector\Rector\AbstractRector;
use Rector\RectorDefinition\CodeSample;
use Rector\RectorDefinition\RectorDefinition;
2019-09-03 09:11:45 +00:00
/**
* @see \Rector\CodeQuality\Tests\Rector\FuncCall\SimplifyStrposLowerRector\SimplifyStrposLowerRectorTest
*/
final class SimplifyStrposLowerRector extends AbstractRector
{
public function getDefinition(): RectorDefinition
{
return new RectorDefinition(
'Simplify strpos(strtolower(), "...") calls',
[new CodeSample('strpos(strtolower($var), "...")"', 'stripos($var, "...")"')]
);
}
/**
* @return string[]
*/
public function getNodeTypes(): array
{
return [FuncCall::class];
}
/**
2019-09-14 14:56:09 +00:00
* @param FuncCall $node
*/
public function refactor(Node $node): ?Node
{
2018-10-15 04:13:42 +00:00
if (! $this->isName($node, 'strpos')) {
return null;
}
if (! isset($node->args[0])) {
return null;
}
if (! $node->args[0]->value instanceof FuncCall) {
return null;
}
/** @var FuncCall $innerFuncCall */
$innerFuncCall = $node->args[0]->value;
2018-10-15 04:13:42 +00:00
if (! $this->isName($innerFuncCall, 'strtolower')) {
return null;
}
// pop 1 level up
$node->args[0] = $innerFuncCall->args[0];
$node->name = new Name('stripos');
return $node;
}
}