@@ -3,7 +3,7 @@ discard block |
||
3 | 3 | |
4 | 4 | class StringType extends AbstractAtom |
5 | 5 | { |
6 | - public function __construct($token, $dontFormat=false) |
|
6 | + public function __construct($token, $dontFormat = false) |
|
7 | 7 | { |
8 | 8 | if ($dontFormat) { |
9 | 9 | $this->setValue($token); |
@@ -20,6 +20,6 @@ discard block |
||
20 | 20 | '/\\\n/' // New lines (\n) |
21 | 21 | ]; |
22 | 22 | $replaces = ['', '"', "\n"]; |
23 | - return preg_replace($searches, $replaces , $string); |
|
23 | + return preg_replace($searches, $replaces, $string); |
|
24 | 24 | } |
25 | 25 | } |