rector/rules/code-quality/src/Rector/FuncCall/SimplifyInArrayValuesRector.php

57 lines
1.4 KiB
PHP
Raw Normal View History

2019-10-13 05:59:52 +00:00
<?php
declare(strict_types=1);
namespace Rector\CodeQuality\Rector\FuncCall;
use PhpParser\Node;
use PhpParser\Node\Expr\FuncCall;
use Rector\Core\Rector\AbstractRector;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
2019-09-03 09:11:45 +00:00
/**
* @see \Rector\CodeQuality\Tests\Rector\FuncCall\SimplifyInArrayValuesRector\SimplifyInArrayValuesRectorTest
*/
final class SimplifyInArrayValuesRector extends AbstractRector
{
public function getRuleDefinition(): RuleDefinition
{
return new RuleDefinition(
'Removes unneeded array_values() in in_array() call',
[new CodeSample('in_array("key", array_values($array), true);', 'in_array("key", $array, true);')]);
}
/**
* @return string[]
*/
public function getNodeTypes(): array
{
return [FuncCall::class];
}
/**
* @param FuncCall $node
*/
public function refactor(Node $node): ?Node
{
2018-10-15 04:13:42 +00:00
if (! $this->isName($node, 'in_array')) {
return null;
}
if (! $node->args[1]->value instanceof FuncCall) {
return null;
}
/** @var FuncCall $innerFunCall */
$innerFunCall = $node->args[1]->value;
2018-10-15 04:13:42 +00:00
if (! $this->isName($innerFunCall, 'array_values')) {
return null;
}
$node->args[1] = $innerFunCall->args[0];
return $node;
}
}