Completed
Push — master ( d365e4...a09952 )
by Tom
01:39
created
src/Parser/Tokenizer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -144,7 +144,7 @@
 block discarded – undo
144 144
 		if ($char === self::STRING) {
145 145
 			$string = $this->extractString($i);
146 146
 			$length = strlen($string)+1;
147
-			$string = str_replace('\\' . $this->str[$i], $this->str[$i], $string);
147
+			$string = str_replace('\\'.$this->str[$i], $this->str[$i], $string);
148 148
 			$tokens[] = ['type' => self::STRING, 'value' => $string, 'line' => $this->lineNo];
149 149
 			return $length;
150 150
 		}
Please login to merge, or discard this patch.