mirror of
https://github.com/rectorphp/rector.git
synced 2025-03-24 17:29:45 +01:00
Updated Rector to commit 5ec9708c2941e02774382a1b8be54f6da9ddcb13
5ec9708c29
[CodeQuality] Skip with comment inside on SimplifyIfElseToTernaryRector (#6683)
This commit is contained in:
parent
9b969244a3
commit
e46a92fe64
@ -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;
|
||||
|
@ -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
|
||||
*/
|
||||
|
Loading…
x
Reference in New Issue
Block a user