Updated Rector to commit 8efb34e74548d702dcc1fa15f9b6f22eaf2e08e3

8efb34e745 [Renaming] Handle crash on assign on for loop on RenameFunctionRector (#6730)
This commit is contained in:
Tomas Votruba 2025-02-11 07:51:13 +00:00
parent 425ccaa023
commit d312db427a
2 changed files with 5 additions and 2 deletions

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = '36f2d21ca9ec795733466a9f486d16322325d19c';
public const PACKAGE_VERSION = '8efb34e74548d702dcc1fa15f9b6f22eaf2e08e3';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2025-02-10 22:33:50';
public const RELEASE_DATE = '2025-02-11 14:48:34';
/**
* @var int
*/

View File

@ -249,6 +249,9 @@ final class PHPStanNodeScopeResolver
if ($expr instanceof BinaryOp) {
$this->processBinaryOp($expr, $mutatingScope);
}
if ($expr instanceof Assign) {
$this->processAssign($expr, $mutatingScope);
}
}
return;
}