Completed
Push — master ( b996fd...489703 )
by Alexander
9s
created
src/ReflectionMethod.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -95,12 +95,12 @@
 block discarded – undo
95 95
         $paramString = '';
96 96
         $identation  = str_repeat(' ', 4);
97 97
         foreach ($methodParameters as $methodParameter) {
98
-            $paramString .= "\n{$identation}" . $methodParameter;
98
+            $paramString .= "\n{$identation}".$methodParameter;
99 99
         }
100 100
 
101 101
         return sprintf(
102 102
             "%sMethod [ <user%s%s%s>%s%s%s %s method %s ] {\n  @@ %s %d - %d{$paramFormat}{$returnFormat}\n}\n",
103
-            $this->getDocComment() ? $this->getDocComment() . "\n" : '',
103
+            $this->getDocComment() ? $this->getDocComment()."\n" : '',
104 104
             $prototype ? ", overwrites {$prototypeClass}, prototype {$prototypeClass}" : '',
105 105
             $this->isConstructor() ? ', ctor' : '',
106 106
             $this->isDestructor() ? ', dtor' : '',
Please login to merge, or discard this patch.