Updated Rector to commit 5ec9708c2941e02774382a1b8be54f6da9ddcb13

5ec9708c29 [CodeQuality] Skip with comment inside on SimplifyIfElseToTernaryRector (#6683)
This commit is contained in:
Tomas Votruba 2025-01-20 04:09:53 +00:00
parent 9b969244a3
commit e46a92fe64
2 changed files with 5 additions and 2 deletions

View File

@ -145,6 +145,9 @@ CODE_SAMPLE
if (!$stmt instanceof Expression) {
return null;
}
if ($stmt->getComments() !== []) {
return null;
}
$stmtExpr = $stmt->expr;
if (!$stmtExpr instanceof Assign) {
return null;

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = '1576a7b330ae4537198474d987a99e78153acc6b';
public const PACKAGE_VERSION = '5ec9708c2941e02774382a1b8be54f6da9ddcb13';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2025-01-19 18:10:55';
public const RELEASE_DATE = '2025-01-20 11:07:16';
/**
* @var int
*/