Completed
Pull Request — 2.7 (#8035)
by Vincent
08:11
created
lib/Doctrine/ORM/Query/Expr/Func.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -74,9 +74,9 @@
 block discarded – undo
74 74
     public function __toString()
75 75
     {
76 76
         if (count($this->arguments) === 0) {
77
-            return $this->name . '(NULL)';
77
+            return $this->name.'(NULL)';
78 78
         }
79 79
 
80
-        return $this->name . '(' . implode(', ', $this->arguments) . ')';
80
+        return $this->name.'('.implode(', ', $this->arguments).')';
81 81
     }
82 82
 }
Please login to merge, or discard this patch.