Completed
Pull Request — master (#8035)
by Vincent
06:19
created
lib/Doctrine/ORM/Query/Expr/Func.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,9 +51,9 @@
 block discarded – undo
51 51
     public function __toString()
52 52
     {
53 53
         if (count($this->arguments) === 0) {
54
-            return $this->name . '(FALSE)';
54
+            return $this->name.'(FALSE)';
55 55
         }
56 56
 
57
-        return $this->name . '(' . implode(', ', $this->arguments) . ')';
57
+        return $this->name.'('.implode(', ', $this->arguments).')';
58 58
     }
59 59
 }
Please login to merge, or discard this patch.