Completed
Push — master ( 766562...9055a2 )
by Lars
03:30
created
src/voku/db/ActiveRecordExpressionsWrap.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,9 +19,9 @@
 block discarded – undo
19 19
     $delimiter = (string)($this->delimiter ?: ',');
20 20
 
21 21
     if ($this->start) {
22
-      return $this->start . implode($delimiter, $this->target->getArray()) . ($this->end ?: ')');
22
+      return $this->start.implode($delimiter, $this->target->getArray()).($this->end ?: ')');
23 23
     }
24 24
 
25
-    return '(' . implode($delimiter, $this->target->getArray()) . ($this->end ? $this->end : ')');
25
+    return '('.implode($delimiter, $this->target->getArray()).($this->end ? $this->end : ')');
26 26
   }
27 27
 }
Please login to merge, or discard this patch.
src/voku/db/ActiveRecordExpressions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,6 +21,6 @@
 block discarded – undo
21 21
    */
22 22
   public function __toString()
23 23
   {
24
-    return $this->source . ' ' . $this->operator . ' ' . $this->target;
24
+    return $this->source.' '.$this->operator.' '.$this->target;
25 25
   }
26 26
 }
Please login to merge, or discard this patch.