Completed
Push — master ( 12d765...9c067a )
by Scott
02:40
created
src/data_types/StringType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.