Completed
Pull Request — master (#75)
by Deven
162:47 queued 92:52
created
src/Statements/SetStatement.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
      * @var array
33 33
      */
34 34
     public static $CLAUSES = array(
35
-        'SET'                           => array('SET',         3),
35
+        'SET'                           => array('SET', 3),
36 36
     );
37 37
 
38 38
     /**
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
      */
67 67
     public function build()
68 68
     {
69
-        return 'SET ' . OptionsArray::build($this->options)
70
-            . ' ' . SetOperation::build($this->set);
69
+        return 'SET '.OptionsArray::build($this->options)
70
+            . ' '.SetOperation::build($this->set);
71 71
     }
72 72
 }
Please login to merge, or discard this patch.