Updated Rector to commit 8281a06bc8432d9d7f8e20842e3961df99a277bc

8281a06bc8 [PHP 7.2] Add error suppres support to each() rule (#5844)
This commit is contained in:
Tomas Votruba 2024-04-24 08:56:31 +00:00
parent d5e203a6e9
commit 7141ae6e56
10 changed files with 94 additions and 54 deletions

View File

@ -3,13 +3,13 @@
declare (strict_types=1); declare (strict_types=1);
namespace Rector\DeadCode\NodeAnalyzer; namespace Rector\DeadCode\NodeAnalyzer;
use PhpParser\Node\Expr\NullsafeMethodCall;
use PhpParser\Node; use PhpParser\Node;
use PhpParser\Node\Arg; use PhpParser\Node\Arg;
use PhpParser\Node\Expr\Array_; use PhpParser\Node\Expr\Array_;
use PhpParser\Node\Expr\ArrayItem; use PhpParser\Node\Expr\ArrayItem;
use PhpParser\Node\Expr\CallLike; use PhpParser\Node\Expr\CallLike;
use PhpParser\Node\Expr\MethodCall; use PhpParser\Node\Expr\MethodCall;
use PhpParser\Node\Expr\NullsafeMethodCall;
use PhpParser\Node\Expr\StaticCall; use PhpParser\Node\Expr\StaticCall;
use PhpParser\Node\Name; use PhpParser\Node\Name;
use PhpParser\Node\Stmt\Class_; use PhpParser\Node\Stmt\Class_;

View File

@ -6,12 +6,11 @@ namespace Rector\Php72\Rector\Assign;
use PhpParser\Node; use PhpParser\Node;
use PhpParser\Node\Expr\ArrayItem; use PhpParser\Node\Expr\ArrayItem;
use PhpParser\Node\Expr\Assign; use PhpParser\Node\Expr\Assign;
use PhpParser\Node\Expr\FuncCall;
use PhpParser\Node\Expr\List_;
use PhpParser\Node\Stmt; use PhpParser\Node\Stmt;
use PhpParser\Node\Stmt\Expression; use PhpParser\Node\Stmt\Expression;
use Rector\Exception\ShouldNotHappenException; use Rector\Exception\ShouldNotHappenException;
use Rector\NodeManipulator\AssignManipulator; use Rector\NodeManipulator\AssignManipulator;
use Rector\Php72\ValueObject\ListAndEach;
use Rector\Rector\AbstractRector; use Rector\Rector\AbstractRector;
use Rector\ValueObject\PhpVersionFeature; use Rector\ValueObject\PhpVersionFeature;
use Rector\VersionBonding\Contract\MinPhpVersionInterface; use Rector\VersionBonding\Contract\MinPhpVersionInterface;
@ -65,58 +64,55 @@ CODE_SAMPLE
if (!$node->expr instanceof Assign) { if (!$node->expr instanceof Assign) {
return null; return null;
} }
$assign = $node->expr; $listAndEach = $this->assignManipulator->matchListAndEach($node->expr);
if ($this->shouldSkipAssign($assign)) { if (!$listAndEach instanceof ListAndEach) {
return null; return null;
} }
/** @var List_ $listNode */ if ($this->shouldSkipAssign($listAndEach)) {
$listNode = $assign->var; return null;
/** @var FuncCall $eachFuncCall */ }
$eachFuncCall = $assign->expr; $list = $listAndEach->getList();
$eachFuncCall = $listAndEach->getEachFuncCall();
// only key: list($key, ) = each($values); // only key: list($key, ) = each($values);
if ($listNode->items[0] instanceof ArrayItem && !$listNode->items[1] instanceof ArrayItem) { if ($list->items[0] instanceof ArrayItem && !$list->items[1] instanceof ArrayItem) {
$keyFuncCall = $this->nodeFactory->createFuncCall('key', $eachFuncCall->args); $keyFuncCall = $this->nodeFactory->createFuncCall('key', $eachFuncCall->args);
$keyFuncCallAssign = new Assign($listNode->items[0]->value, $keyFuncCall); $keyFuncCallAssign = new Assign($list->items[0]->value, $keyFuncCall);
return new Expression($keyFuncCallAssign); return new Expression($keyFuncCallAssign);
} }
// only value: list(, $value) = each($values); // only value: list(, $value) = each($values);
if ($listNode->items[1] instanceof ArrayItem && !$listNode->items[0] instanceof ArrayItem) { if ($list->items[1] instanceof ArrayItem && !$list->items[0] instanceof ArrayItem) {
$nextFuncCall = $this->nodeFactory->createFuncCall('next', $eachFuncCall->args); $nextFuncCall = $this->nodeFactory->createFuncCall('next', $eachFuncCall->args);
$currentFuncCall = $this->nodeFactory->createFuncCall('current', $eachFuncCall->args); $currentFuncCall = $this->nodeFactory->createFuncCall('current', $eachFuncCall->args);
$secondArrayItem = $listNode->items[1]; $secondArrayItem = $list->items[1];
$currentAssign = new Assign($secondArrayItem->value, $currentFuncCall); $currentAssign = new Assign($secondArrayItem->value, $currentFuncCall);
return [new Expression($currentAssign), new Expression($nextFuncCall)]; return [new Expression($currentAssign), new Expression($nextFuncCall)];
} }
// both: list($key, $value) = each($values); // both: list($key, $value) = each($values);
$currentFuncCall = $this->nodeFactory->createFuncCall('current', $eachFuncCall->args); $currentFuncCall = $this->nodeFactory->createFuncCall('current', $eachFuncCall->args);
$secondArrayItem = $listNode->items[1]; $secondArrayItem = $list->items[1];
if (!$secondArrayItem instanceof ArrayItem) { if (!$secondArrayItem instanceof ArrayItem) {
throw new ShouldNotHappenException(); throw new ShouldNotHappenException();
} }
$currentAssign = new Assign($secondArrayItem->value, $currentFuncCall); $currentAssign = new Assign($secondArrayItem->value, $currentFuncCall);
$nextFuncCall = $this->nodeFactory->createFuncCall('next', $eachFuncCall->args); $nextFuncCall = $this->nodeFactory->createFuncCall('next', $eachFuncCall->args);
$keyFuncCall = $this->nodeFactory->createFuncCall('key', $eachFuncCall->args); $keyFuncCall = $this->nodeFactory->createFuncCall('key', $eachFuncCall->args);
$firstArrayItem = $listNode->items[0]; $firstArrayItem = $list->items[0];
if (!$firstArrayItem instanceof ArrayItem) { if (!$firstArrayItem instanceof ArrayItem) {
throw new ShouldNotHappenException(); throw new ShouldNotHappenException();
} }
$keyAssign = new Assign($firstArrayItem->value, $keyFuncCall); $keyAssign = new Assign($firstArrayItem->value, $keyFuncCall);
return [new Expression($keyAssign), new Expression($currentAssign), new Expression($nextFuncCall)]; return [new Expression($keyAssign), new Expression($currentAssign), new Expression($nextFuncCall)];
} }
private function shouldSkipAssign(Assign $assign) : bool private function shouldSkipAssign(ListAndEach $listAndEach) : bool
{ {
if (!$this->assignManipulator->isListToEachAssign($assign)) { $list = $listAndEach->getList();
return \true; if (\count($list->items) !== 2) {
}
/** @var List_ $listNode */
$listNode = $assign->var;
if (\count($listNode->items) !== 2) {
return \true; return \true;
} }
// empty list → cannot handle // empty list → cannot handle
if ($listNode->items[0] instanceof ArrayItem) { if ($list->items[0] instanceof ArrayItem) {
return \false; return \false;
} }
return !$listNode->items[1] instanceof ArrayItem; return !$list->items[1] instanceof ArrayItem;
} }
} }

View File

@ -6,11 +6,10 @@ namespace Rector\Php72\Rector\While_;
use PhpParser\Node; use PhpParser\Node;
use PhpParser\Node\Expr\ArrayItem; use PhpParser\Node\Expr\ArrayItem;
use PhpParser\Node\Expr\Assign; use PhpParser\Node\Expr\Assign;
use PhpParser\Node\Expr\FuncCall;
use PhpParser\Node\Expr\List_;
use PhpParser\Node\Stmt\Foreach_; use PhpParser\Node\Stmt\Foreach_;
use PhpParser\Node\Stmt\While_; use PhpParser\Node\Stmt\While_;
use Rector\NodeManipulator\AssignManipulator; use Rector\NodeManipulator\AssignManipulator;
use Rector\Php72\ValueObject\ListAndEach;
use Rector\Rector\AbstractRector; use Rector\Rector\AbstractRector;
use Rector\ValueObject\PhpVersionFeature; use Rector\ValueObject\PhpVersionFeature;
use Rector\VersionBonding\Contract\MinPhpVersionInterface; use Rector\VersionBonding\Contract\MinPhpVersionInterface;
@ -75,37 +74,31 @@ CODE_SAMPLE
if (!$node->cond instanceof Assign) { if (!$node->cond instanceof Assign) {
return null; return null;
} }
/** @var Assign $assignNode */ $listAndEach = $this->assignManipulator->matchListAndEach($node->cond);
$assignNode = $node->cond; if (!$listAndEach instanceof ListAndEach) {
if (!$this->assignManipulator->isListToEachAssign($assignNode)) {
return null; return null;
} }
/** @var FuncCall $eachFuncCall */ $eachFuncCall = $listAndEach->getEachFuncCall();
$eachFuncCall = $assignNode->expr; $list = $listAndEach->getList();
if ($eachFuncCall->isFirstClassCallable()) {
return null;
}
/** @var List_ $listNode */
$listNode = $assignNode->var;
if (!isset($eachFuncCall->getArgs()[0])) { if (!isset($eachFuncCall->getArgs()[0])) {
return null; return null;
} }
$firstArg = $eachFuncCall->getArgs()[0]; $firstArg = $eachFuncCall->getArgs()[0];
$foreachedExpr = \count($listNode->items) === 1 ? $this->nodeFactory->createFuncCall('array_keys', [$firstArg]) : $firstArg->value; $foreachedExpr = \count($list->items) === 1 ? $this->nodeFactory->createFuncCall('array_keys', [$firstArg]) : $firstArg->value;
$arrayItem = \array_pop($listNode->items); $arrayItem = \array_pop($list->items);
$isTrailingCommaLast = \false; $isTrailingCommaLast = \false;
if (!$arrayItem instanceof ArrayItem) { if (!$arrayItem instanceof ArrayItem) {
$foreachedExpr = $this->nodeFactory->createFuncCall('array_keys', [$eachFuncCall->args[0]]); $foreachedExpr = $this->nodeFactory->createFuncCall('array_keys', [$eachFuncCall->args[0]]);
/** @var ArrayItem $arrayItem */ /** @var ArrayItem $arrayItem */
$arrayItem = \current($listNode->items); $arrayItem = \current($list->items);
$isTrailingCommaLast = \true; $isTrailingCommaLast = \true;
} }
$foreach = new Foreach_($foreachedExpr, $arrayItem, ['stmts' => $node->stmts]); $foreach = new Foreach_($foreachedExpr, $arrayItem, ['stmts' => $node->stmts]);
$this->mirrorComments($foreach, $node); $this->mirrorComments($foreach, $node);
// is key included? add it to foreach // is key included? add it to foreach
if ($listNode->items !== []) { if ($list->items !== []) {
/** @var ArrayItem|null $keyItem */ /** @var ArrayItem|null $keyItem */
$keyItem = \array_pop($listNode->items); $keyItem = \array_pop($list->items);
if ($keyItem instanceof ArrayItem && !$isTrailingCommaLast) { if ($keyItem instanceof ArrayItem && !$isTrailingCommaLast) {
$foreach->keyVar = $keyItem->value; $foreach->keyVar = $keyItem->value;
} }

View File

@ -0,0 +1,33 @@
<?php
declare (strict_types=1);
namespace Rector\Php72\ValueObject;
use PhpParser\Node\Expr\FuncCall;
use PhpParser\Node\Expr\List_;
final class ListAndEach
{
/**
* @readonly
* @var \PhpParser\Node\Expr\List_
*/
private $list;
/**
* @readonly
* @var \PhpParser\Node\Expr\FuncCall
*/
private $eachFuncCall;
public function __construct(List_ $list, FuncCall $eachFuncCall)
{
$this->list = $list;
$this->eachFuncCall = $eachFuncCall;
}
public function getList() : List_
{
return $this->list;
}
public function getEachFuncCall() : FuncCall
{
return $this->eachFuncCall;
}
}

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api * @api
* @var string * @var string
*/ */
public const PACKAGE_VERSION = 'd5069f0fccf649646eeea05b5291c0ac34e511d6'; public const PACKAGE_VERSION = '8281a06bc8432d9d7f8e20842e3961df99a277bc';
/** /**
* @api * @api
* @var string * @var string
*/ */
public const RELEASE_DATE = '2024-04-23 19:08:22'; public const RELEASE_DATE = '2024-04-24 08:54:03';
/** /**
* @var int * @var int
*/ */

View File

@ -5,6 +5,7 @@ namespace Rector\NodeManipulator;
use PhpParser\Node; use PhpParser\Node;
use PhpParser\Node\Expr\Assign; use PhpParser\Node\Expr\Assign;
use PhpParser\Node\Expr\ErrorSuppress;
use PhpParser\Node\Expr\FuncCall; use PhpParser\Node\Expr\FuncCall;
use PhpParser\Node\Expr\List_; use PhpParser\Node\Expr\List_;
use PhpParser\Node\Expr\PropertyFetch; use PhpParser\Node\Expr\PropertyFetch;
@ -13,6 +14,7 @@ use PhpParser\Node\FunctionLike;
use Rector\NodeAnalyzer\PropertyFetchAnalyzer; use Rector\NodeAnalyzer\PropertyFetchAnalyzer;
use Rector\NodeNameResolver\NodeNameResolver; use Rector\NodeNameResolver\NodeNameResolver;
use Rector\NodeTypeResolver\Node\AttributeKey; use Rector\NodeTypeResolver\Node\AttributeKey;
use Rector\Php72\ValueObject\ListAndEach;
use Rector\PhpParser\Node\BetterNodeFinder; use Rector\PhpParser\Node\BetterNodeFinder;
final class AssignManipulator final class AssignManipulator
{ {
@ -39,17 +41,31 @@ final class AssignManipulator
} }
/** /**
* Matches: * Matches:
* each() = [1, 2]; * list([1, 2]) = each($items)
*/ */
public function isListToEachAssign(Assign $assign) : bool public function matchListAndEach(Assign $assign) : ?ListAndEach
{ {
if (!$assign->expr instanceof FuncCall) { // could be behind error suppress
return \false; if ($assign->expr instanceof ErrorSuppress) {
$errorSuppress = $assign->expr;
$bareExpr = $errorSuppress->expr;
} else {
$bareExpr = $assign->expr;
}
if (!$bareExpr instanceof FuncCall) {
return null;
} }
if (!$assign->var instanceof List_) { if (!$assign->var instanceof List_) {
return \false; return null;
} }
return $this->nodeNameResolver->isName($assign->expr, 'each'); if (!$this->nodeNameResolver->isName($bareExpr, 'each')) {
return null;
}
// no placeholders
if ($bareExpr->isFirstClassCallable()) {
return null;
}
return new ListAndEach($assign->var, $bareExpr);
} }
public function isLeftPartOfAssign(Node $node) : bool public function isLeftPartOfAssign(Node $node) : bool
{ {

View File

@ -1841,6 +1841,7 @@ return array(
'Rector\\Php72\\Rector\\FuncCall\\StringsAssertNakedRector' => $baseDir . '/rules/Php72/Rector/FuncCall/StringsAssertNakedRector.php', 'Rector\\Php72\\Rector\\FuncCall\\StringsAssertNakedRector' => $baseDir . '/rules/Php72/Rector/FuncCall/StringsAssertNakedRector.php',
'Rector\\Php72\\Rector\\Unset_\\UnsetCastRector' => $baseDir . '/rules/Php72/Rector/Unset_/UnsetCastRector.php', 'Rector\\Php72\\Rector\\Unset_\\UnsetCastRector' => $baseDir . '/rules/Php72/Rector/Unset_/UnsetCastRector.php',
'Rector\\Php72\\Rector\\While_\\WhileEachToForeachRector' => $baseDir . '/rules/Php72/Rector/While_/WhileEachToForeachRector.php', 'Rector\\Php72\\Rector\\While_\\WhileEachToForeachRector' => $baseDir . '/rules/Php72/Rector/While_/WhileEachToForeachRector.php',
'Rector\\Php72\\ValueObject\\ListAndEach' => $baseDir . '/rules/Php72/ValueObject/ListAndEach.php',
'Rector\\Php73\\Rector\\BooleanOr\\IsCountableRector' => $baseDir . '/rules/Php73/Rector/BooleanOr/IsCountableRector.php', 'Rector\\Php73\\Rector\\BooleanOr\\IsCountableRector' => $baseDir . '/rules/Php73/Rector/BooleanOr/IsCountableRector.php',
'Rector\\Php73\\Rector\\ConstFetch\\SensitiveConstantNameRector' => $baseDir . '/rules/Php73/Rector/ConstFetch/SensitiveConstantNameRector.php', 'Rector\\Php73\\Rector\\ConstFetch\\SensitiveConstantNameRector' => $baseDir . '/rules/Php73/Rector/ConstFetch/SensitiveConstantNameRector.php',
'Rector\\Php73\\Rector\\FuncCall\\ArrayKeyFirstLastRector' => $baseDir . '/rules/Php73/Rector/FuncCall/ArrayKeyFirstLastRector.php', 'Rector\\Php73\\Rector\\FuncCall\\ArrayKeyFirstLastRector' => $baseDir . '/rules/Php73/Rector/FuncCall/ArrayKeyFirstLastRector.php',

View File

@ -2060,6 +2060,7 @@ class ComposerStaticInit005507a96a37a412a8adf9cfaae1e621
'Rector\\Php72\\Rector\\FuncCall\\StringsAssertNakedRector' => __DIR__ . '/../..' . '/rules/Php72/Rector/FuncCall/StringsAssertNakedRector.php', 'Rector\\Php72\\Rector\\FuncCall\\StringsAssertNakedRector' => __DIR__ . '/../..' . '/rules/Php72/Rector/FuncCall/StringsAssertNakedRector.php',
'Rector\\Php72\\Rector\\Unset_\\UnsetCastRector' => __DIR__ . '/../..' . '/rules/Php72/Rector/Unset_/UnsetCastRector.php', 'Rector\\Php72\\Rector\\Unset_\\UnsetCastRector' => __DIR__ . '/../..' . '/rules/Php72/Rector/Unset_/UnsetCastRector.php',
'Rector\\Php72\\Rector\\While_\\WhileEachToForeachRector' => __DIR__ . '/../..' . '/rules/Php72/Rector/While_/WhileEachToForeachRector.php', 'Rector\\Php72\\Rector\\While_\\WhileEachToForeachRector' => __DIR__ . '/../..' . '/rules/Php72/Rector/While_/WhileEachToForeachRector.php',
'Rector\\Php72\\ValueObject\\ListAndEach' => __DIR__ . '/../..' . '/rules/Php72/ValueObject/ListAndEach.php',
'Rector\\Php73\\Rector\\BooleanOr\\IsCountableRector' => __DIR__ . '/../..' . '/rules/Php73/Rector/BooleanOr/IsCountableRector.php', 'Rector\\Php73\\Rector\\BooleanOr\\IsCountableRector' => __DIR__ . '/../..' . '/rules/Php73/Rector/BooleanOr/IsCountableRector.php',
'Rector\\Php73\\Rector\\ConstFetch\\SensitiveConstantNameRector' => __DIR__ . '/../..' . '/rules/Php73/Rector/ConstFetch/SensitiveConstantNameRector.php', 'Rector\\Php73\\Rector\\ConstFetch\\SensitiveConstantNameRector' => __DIR__ . '/../..' . '/rules/Php73/Rector/ConstFetch/SensitiveConstantNameRector.php',
'Rector\\Php73\\Rector\\FuncCall\\ArrayKeyFirstLastRector' => __DIR__ . '/../..' . '/rules/Php73/Rector/FuncCall/ArrayKeyFirstLastRector.php', 'Rector\\Php73\\Rector\\FuncCall\\ArrayKeyFirstLastRector' => __DIR__ . '/../..' . '/rules/Php73/Rector/FuncCall/ArrayKeyFirstLastRector.php',

View File

@ -504,8 +504,8 @@
}, },
{ {
"name": "illuminate\/container", "name": "illuminate\/container",
"version": "v10.48.8", "version": "v10.48.9",
"version_normalized": "10.48.8.0", "version_normalized": "10.48.9.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https:\/\/github.com\/illuminate\/container.git", "url": "https:\/\/github.com\/illuminate\/container.git",
@ -561,8 +561,8 @@
}, },
{ {
"name": "illuminate\/contracts", "name": "illuminate\/contracts",
"version": "v10.48.8", "version": "v10.48.9",
"version_normalized": "10.48.8.0", "version_normalized": "10.48.9.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https:\/\/github.com\/illuminate\/contracts.git", "url": "https:\/\/github.com\/illuminate\/contracts.git",

File diff suppressed because one or more lines are too long