Skip to content

Commit 86f3ae0

Browse files
committed
fix
1 parent 5a3db2d commit 86f3ae0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fmt.stub.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4877,7 +4877,7 @@ public function format($source) {
48774877
case T_AMPERSAND_FOLLOWED_BY_VAR_OR_VARARG:
48784878
if ($this->rightTokenIs(T_VARIABLE)) {
48794879
if (!$this->leftTokenIs([T_FUNCTION,ST_EQUAL, ST_PARENTHESES_OPEN, T_AS, ST_COMMA, T_DOUBLE_ARROW])) {
4880-
if (! isset($this->tkns[$index - 1]) || $this->tkns[$index - 1][1] !== ' ') {
4880+
if (! isset($this->tkns[$index - 1][1]) || $this->tkns[$index - 1][1] !== ' ') {
48814881
$this->appendCode(" ");
48824882
}
48834883
}

0 commit comments

Comments
 (0)