Updated Rector to commit aaf006c8f534230b1bbc4c4fb3747cd660305718

aaf006c8f5 [DeadCode] Skip use docblock on BooleanAnd check on RemoveDeadInstanceOfRector (#5751)
This commit is contained in:
Tomas Votruba 2024-03-21 11:37:34 +00:00
parent 50c2e61f1d
commit c1338c4c07
2 changed files with 3 additions and 3 deletions

View File

@ -129,7 +129,7 @@ CODE_SAMPLE
return null; return null;
} }
$classType = $this->nodeTypeResolver->getType($instanceof->class); $classType = $this->nodeTypeResolver->getType($instanceof->class);
$exprType = $this->nodeTypeResolver->getType($instanceof->expr); $exprType = $this->nodeTypeResolver->getNativeType($instanceof->expr);
if ($classType->equals($exprType)) { if ($classType->equals($exprType)) {
return \true; return \true;
} }

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api * @api
* @var string * @var string
*/ */
public const PACKAGE_VERSION = '0dd1a43904e7d12c76e810b1bbd87d99a0f835c3'; public const PACKAGE_VERSION = 'aaf006c8f534230b1bbc4c4fb3747cd660305718';
/** /**
* @api * @api
* @var string * @var string
*/ */
public const RELEASE_DATE = '2024-03-21 12:34:15'; public const RELEASE_DATE = '2024-03-21 11:35:06';
/** /**
* @var int * @var int
*/ */