Updated Rector to commit b81ef2f28aee9da0861eb67d90d134ec1c537786

b81ef2f28a [Renaming] Skip func call name on RenameClassRector (#5833)
This commit is contained in:
Tomas Votruba 2024-04-19 21:54:58 +00:00
parent 24418026e3
commit 6db496ec6b
2 changed files with 3 additions and 3 deletions

View File

@ -121,7 +121,7 @@ final class ClassRenamer
$classReflection = $this->reflectionProvider->getClass($newName); $classReflection = $this->reflectionProvider->getClass($newName);
return $classReflection->isInterface(); return $classReflection->isInterface();
} }
return \false; return $fullyQualified->getAttribute(AttributeKey::IS_FUNCCALL_NAME) === \true;
} }
/** /**
* @param array<string, string> $oldToNewClasses * @param array<string, string> $oldToNewClasses

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api * @api
* @var string * @var string
*/ */
public const PACKAGE_VERSION = '5e213e66ed72dede6bb43315dbaa2c8d86d449c9'; public const PACKAGE_VERSION = 'b81ef2f28aee9da0861eb67d90d134ec1c537786';
/** /**
* @api * @api
* @var string * @var string
*/ */
public const RELEASE_DATE = '2024-04-19 12:39:13'; public const RELEASE_DATE = '2024-04-20 04:52:33';
/** /**
* @var int * @var int
*/ */