Skip to content

Commit d411a1d

Browse files
committed
Cleanup unused variable
1 parent c38504d commit d411a1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/JsPhpize/Parser/Parser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ protected function parseTernary(Node $condition)
206206
throw new Exception("Ternary expression not properly closed after ':' " . $this->exceptionInfos(), 16);
207207
}
208208
$falseValue = $this->expectValue($next);
209-
$next = $this->get(0);
209+
$this->get(0);
210210

211211
return new Ternary($condition, $trueValue, $falseValue);
212212
}

0 commit comments

Comments
 (0)