Skip to content

Commit 83f5723

Browse files
authored
Fix indention
1 parent ac26fbb commit 83f5723

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Tokenizers/Tokenizer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,7 @@ public function replaceTabsInToken(&$token, $prefix=' ', $padding=' ', $tabWidth
643643

644644
// Move the pointer to the next tab stop.
645645
$length = $tabWidth - ($currColumn + $tabWidth - 1) % $tabWidth;
646-
$currColumn += $length;
646+
$currColumn += $length;
647647
$newContent .= $prefix.str_repeat($padding, ($length - 1));
648648
}//end foreach
649649
}//end if

0 commit comments

Comments
 (0)