Skip to content

Commit fbed533

Browse files
committed
Fix style
1 parent 24e8df3 commit fbed533

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/JsPhpize/Parser/Parser.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
use JsPhpize\Lexer\Token;
88
use JsPhpize\Nodes\Assignation;
99
use JsPhpize\Nodes\Block;
10-
use JsPhpize\Nodes\Value;
1110
use JsPhpize\Nodes\BracketsArray;
1211
use JsPhpize\Nodes\Constant;
1312
use JsPhpize\Nodes\Dyiade;
1413
use JsPhpize\Nodes\FunctionCall;
1514
use JsPhpize\Nodes\HooksArray;
1615
use JsPhpize\Nodes\Main;
1716
use JsPhpize\Nodes\Parenthesis;
17+
use JsPhpize\Nodes\Value;
1818
use JsPhpize\Nodes\Variable;
1919

2020
class Parser
@@ -121,6 +121,7 @@ protected function parseParentheses()
121121
if ($next && $next->is('lambda')) {
122122
return $this->parseLambda($parentheses);
123123
}
124+
124125
return $parentheses;
125126
}
126127
if ($expectComma) {

0 commit comments

Comments
 (0)