Updated Rector to commit ff7acb4c853ebc2322dac6fff618dac8218dacb3

ff7acb4c85 [CodeQuality] Skip docblock usage on SimplifyBoolIdenticalTrueRector (#5161)
This commit is contained in:
Tomas Votruba 2023-10-13 13:49:39 +00:00
parent 6e9ac90555
commit a7ae66acba
2 changed files with 3 additions and 3 deletions

View File

@ -111,6 +111,6 @@ CODE_SAMPLE
if ($this->valueResolver->isTrueOrFalse($expr)) { if ($this->valueResolver->isTrueOrFalse($expr)) {
return \false; return \false;
} }
return $this->getType($expr)->isBoolean()->yes(); return $this->nodeTypeResolver->getNativeType($expr)->isBoolean()->yes();
} }
} }

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api * @api
* @var string * @var string
*/ */
public const PACKAGE_VERSION = '1f0450448ed47e4778cfc88e50955f63df31f42a'; public const PACKAGE_VERSION = 'ff7acb4c853ebc2322dac6fff618dac8218dacb3';
/** /**
* @api * @api
* @var string * @var string
*/ */
public const RELEASE_DATE = '2023-10-13 09:56:23'; public const RELEASE_DATE = '2023-10-13 20:46:43';
/** /**
* @var int * @var int
*/ */