mirror of
https://github.com/rectorphp/rector.git
synced 2025-04-13 03:52:15 +02:00
Updated Rector to commit 3a10b135cd7e74fdfb2de25708c8482f5beff31c
3a10b135cd
[Php70] Use more precise variable name check on WrapVariableVariableNameInCurlyBracesRector (#6534)
This commit is contained in:
parent
d0c3bb9110
commit
4434633b3a
@ -53,7 +53,7 @@ CODE_SAMPLE
|
||||
if (!$node->var instanceof Variable) {
|
||||
return null;
|
||||
}
|
||||
if (\is_string($node->var->name)) {
|
||||
if (!$node->var->name instanceof Variable) {
|
||||
return null;
|
||||
}
|
||||
return new Variable(new ArrayDimFetch($node->var->name, $node->dim));
|
||||
|
@ -19,12 +19,12 @@ final class VersionResolver
|
||||
* @api
|
||||
* @var string
|
||||
*/
|
||||
public const PACKAGE_VERSION = '70605936b150b2b589ef4fb3c1275667ff690b26';
|
||||
public const PACKAGE_VERSION = '3a10b135cd7e74fdfb2de25708c8482f5beff31c';
|
||||
/**
|
||||
* @api
|
||||
* @var string
|
||||
*/
|
||||
public const RELEASE_DATE = '2024-12-08 10:06:48';
|
||||
public const RELEASE_DATE = '2024-12-08 10:12:44';
|
||||
/**
|
||||
* @var int
|
||||
*/
|
||||
|
Loading…
x
Reference in New Issue
Block a user