Updated Rector to commit 7a6c4c5386ce203184897c60f7e070fc43aca15a

7a6c4c5386 [AutoImport] Handle FQCN with sub namespace (#6672)
This commit is contained in:
Tomas Votruba 2025-01-16 12:05:30 +00:00
parent b6dc880669
commit 13e89f8bcc
2 changed files with 3 additions and 3 deletions

View File

@ -185,6 +185,6 @@ final class UseImportsAdder
if ($afterCurrentNamespace === null) {
return \false;
}
return \strpos($afterCurrentNamespace, '\\') === \false;
return $namespaceName . '\\' . $afterCurrentNamespace === $objectType->getClassName();
}
}

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = '354ef50368dd5e33e2ede598a418a26c997b5a7c';
public const PACKAGE_VERSION = '7a6c4c5386ce203184897c60f7e070fc43aca15a';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2025-01-16 17:03:44';
public const RELEASE_DATE = '2025-01-16 19:03:00';
/**
* @var int
*/