mirror of
https://github.com/rectorphp/rector.git
synced 2025-03-13 20:12:07 +01:00
Updated Rector to commit 8efb34e74548d702dcc1fa15f9b6f22eaf2e08e3
8efb34e745
[Renaming] Handle crash on assign on for loop on RenameFunctionRector (#6730)
This commit is contained in:
parent
425ccaa023
commit
d312db427a
@ -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
|
||||
*/
|
||||
|
@ -249,6 +249,9 @@ final class PHPStanNodeScopeResolver
|
||||
if ($expr instanceof BinaryOp) {
|
||||
$this->processBinaryOp($expr, $mutatingScope);
|
||||
}
|
||||
if ($expr instanceof Assign) {
|
||||
$this->processAssign($expr, $mutatingScope);
|
||||
}
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user