Completed
Push — master ( d365e4...a09952 )
by Tom
01:39
created
src/Parser/Tokenizer.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -73,8 +73,8 @@
 block discarded – undo
73 73
 		for ($i = 0; $i < strlen($this->str); $i++) {
74 74
 			$char = $this->identifyChar($this->str[$i]);
75 75
 
76
-            $i += $this->doSingleLineComments($tokens, $char, $i);
77
-            $i += $this->doMultiLineComments($tokens, $char, $i);
76
+			$i += $this->doSingleLineComments($tokens, $char, $i);
77
+			$i += $this->doMultiLineComments($tokens, $char, $i);
78 78
 
79 79
 			$this->doNewLine($tokens, $char);
80 80
 			$this->doSimpleTokens($tokens, $char);
Please login to merge, or discard this patch.