Skip to content

Commit

Permalink
Updated Rector to commit e2b96d4f6efda2db3bf6a1074b67fcf2439e848d
Browse files Browse the repository at this point in the history
rectorphp/rector-src@e2b96d4 Ensure same behaviour as before on UseImportsTraverser (#6290)
  • Loading branch information
TomasVotruba committed Sep 5, 2024
1 parent 93c6ecf commit 41a5fd7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion rules/CodingStyle/ClassNameImport/UseImportsTraverser.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public function traverserStmts(array $stmts, callable $callable) : void
foreach ($stmts as $stmt) {
if ($stmt instanceof Namespace_ || $stmt instanceof FileWithoutNamespace) {
$this->traverserStmts($stmt->stmts, $callable);
return;
continue;
}
if (!$stmt instanceof Use_ && !$stmt instanceof GroupUse) {
continue;
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 = '246de2dd9f7ce39e4ff94de0d36307e4fc8067b5';
public const PACKAGE_VERSION = 'e2b96d4f6efda2db3bf6a1074b67fcf2439e848d';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2024-09-06 04:17:37';
public const RELEASE_DATE = '2024-09-05 21:43:30';
/**
* @var int
*/
Expand Down

0 comments on commit 41a5fd7

Please sign in to comment.