Skip to content

Commit 41a5fd7

Browse files
committed
Updated Rector to commit e2b96d4f6efda2db3bf6a1074b67fcf2439e848d
rectorphp/rector-src@e2b96d4 Ensure same behaviour as before on UseImportsTraverser (#6290)
1 parent 93c6ecf commit 41a5fd7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

rules/CodingStyle/ClassNameImport/UseImportsTraverser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public function traverserStmts(array $stmts, callable $callable) : void
3030
foreach ($stmts as $stmt) {
3131
if ($stmt instanceof Namespace_ || $stmt instanceof FileWithoutNamespace) {
3232
$this->traverserStmts($stmt->stmts, $callable);
33-
return;
33+
continue;
3434
}
3535
if (!$stmt instanceof Use_ && !$stmt instanceof GroupUse) {
3636
continue;

src/Application/VersionResolver.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ final class VersionResolver
1919
* @api
2020
* @var string
2121
*/
22-
public const PACKAGE_VERSION = '246de2dd9f7ce39e4ff94de0d36307e4fc8067b5';
22+
public const PACKAGE_VERSION = 'e2b96d4f6efda2db3bf6a1074b67fcf2439e848d';
2323
/**
2424
* @api
2525
* @var string
2626
*/
27-
public const RELEASE_DATE = '2024-09-06 04:17:37';
27+
public const RELEASE_DATE = '2024-09-05 21:43:30';
2828
/**
2929
* @var int
3030
*/

0 commit comments

Comments
 (0)