Skip to content

Commit 462fe95

Browse files
committed
organize imports: reorder ForStatement import placement in Parser and AstTraverser
1 parent 051406f commit 462fe95

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/Core/AstTraverser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
use PhpScript\Ast\Assignment;
88
use PhpScript\Ast\BinaryOperation;
99
use PhpScript\Ast\EchoStatement;
10-
use PhpScript\Ast\ForStatement;
1110
use PhpScript\Ast\ForeachStatement;
11+
use PhpScript\Ast\ForStatement;
1212
use PhpScript\Ast\FunctionCall;
1313
use PhpScript\Ast\Identifier;
1414
use PhpScript\Ast\IfStatement;

src/Core/Parser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
use PhpScript\Ast\Assignment;
88
use PhpScript\Ast\BinaryOperation;
99
use PhpScript\Ast\EchoStatement;
10-
use PhpScript\Ast\ForStatement;
1110
use PhpScript\Ast\ForeachStatement;
11+
use PhpScript\Ast\ForStatement;
1212
use PhpScript\Ast\FunctionCall;
1313
use PhpScript\Ast\Identifier;
1414
use PhpScript\Ast\IfStatement;

0 commit comments

Comments
 (0)