Skip to content

Commit 07e182b

Browse files
authored
Add pointless brackets
1 parent 3dd9d32 commit 07e182b

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
@@ -642,7 +642,7 @@ public function replaceTabsInToken(&$token, $prefix=' ', $padding=' ', $tabWidth
642642
$tabNum++;
643643

644644
// Move the pointer to the next tab stop.
645-
$pad = $tabWidth - ($currColumn + $tabWidth - 1) % $tabWidth;
645+
$pad = ($tabWidth - ($currColumn + $tabWidth - 1) % $tabWidth);
646646
$currColumn += $pad;
647647
$length += $pad;
648648
$newContent .= $prefix.str_repeat($padding, ($pad - 1));

0 commit comments

Comments
 (0)