Skip to content

Commit

Permalink
Updated Rector to commit 25b437a67243133d39aaf9579723013730b4d3f5
Browse files Browse the repository at this point in the history
rectorphp/rector-src@25b437a [CodeQuality] Allow change empty() to [] compare of other object property usage on SimplifyEmptyCheckOnEmptyArrayRector (#6147)
  • Loading branch information
TomasVotruba committed Jul 14, 2024
1 parent 707f4ca commit 8349226
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ private function isAllowedExpr(Expr $expr, Scope $scope) : bool
if (!$expr->name instanceof Identifier) {
return \false;
}
$classReflection = $this->reflectionResolver->resolveClassReflection($expr);
$classReflection = $this->reflectionResolver->resolveClassReflectionSourceObject($expr);
if (!$classReflection instanceof ClassReflection) {
return \false;
}
Expand Down
4 changes: 2 additions & 2 deletions src/Application/VersionResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = 'a9ddf8fe859ce31baccee9692438ad03c9101549';
public const PACKAGE_VERSION = '25b437a67243133d39aaf9579723013730b4d3f5';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2024-07-15 01:40:48';
public const RELEASE_DATE = '2024-07-15 03:55:14';
/**
* @var int
*/
Expand Down

0 comments on commit 8349226

Please sign in to comment.