Updated Rector to commit 6eac87db32eff9308a037fb32ce973ccf905fc92

6eac87db32 Ignore phpdoc type in RecastingRemovalRector (#5841)
This commit is contained in:
Tomas Votruba 2024-04-22 09:35:50 +00:00
parent c041415e42
commit fdfd07f062
2 changed files with 3 additions and 3 deletions

View File

@ -93,7 +93,7 @@ CODE_SAMPLE
if (!isset(self::CAST_CLASS_TO_NODE_TYPE[$nodeClass])) {
return null;
}
$nodeType = $this->getType($node->expr);
$nodeType = $this->nodeTypeResolver->getNativeType($node->expr);
if ($nodeType instanceof MixedType) {
return null;
}

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = '71c6dd929f07d6491847ee9004224441265d0197';
public const PACKAGE_VERSION = '6eac87db32eff9308a037fb32ce973ccf905fc92';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2024-04-22 02:22:37';
public const RELEASE_DATE = '2024-04-22 16:33:11';
/**
* @var int
*/