Skip to content

Commit 6cb629c

Browse files
committed
Coding standard fix
1 parent 0fcc82b commit 6cb629c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CodeSniffer/Standards/Generic/Sniffs/WhiteSpace/ScopeIndentSniff.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -867,7 +867,7 @@ public function process(PHP_CodeSniffer_File $phpcsFile, $stackPtr)
867867
}
868868

869869
// Make sure it is divisible by our expected indent.
870-
$currentIndent = (int) (ceil($currentIndent / $this->indent) * $this->indent);
870+
$currentIndent = (int) (ceil($currentIndent / $this->indent) * $this->indent);
871871

872872
if ($this->_debug === true) {
873873
echo "\t=> indent set to $currentIndent".PHP_EOL;

0 commit comments

Comments
 (0)