Completed
Pull Request — master (#82)
by Loren
05:32
created
src/ReflectionFunction.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
             }
158 158
             $phpExt = $this->getExtension();
159 159
             if ($phpExt) {
160
-                $origin .= ':' . $phpExt->getName();
160
+                $origin .= ':'.$phpExt->getName();
161 161
             }
162 162
         } else {
163 163
             $source = sprintf("\n  @@ %s %d - %d", $this->getFileName(), $this->getStartLine(), $this->getEndLine());
@@ -175,15 +175,15 @@  discard block
 block discarded – undo
175 175
 
176 176
         return sprintf(
177 177
             $reflectionFormat,
178
-            $this->getDocComment() ? $this->getDocComment() . "\n" : '',
178
+            $this->getDocComment() ? $this->getDocComment()."\n" : '',
179 179
             $origin,
180 180
             $this->getName(),
181 181
             $source,
182 182
             count($this->getParameters()),
183 183
             array_reduce(
184 184
                 $this->getParameters(),
185
-                (function ($str, ReflectionParameter $param) {
186
-                    return $str . "\n    " . $param;
185
+                (function($str, ReflectionParameter $param) {
186
+                    return $str."\n    ".$param;
187 187
                 }),
188 188
                 ''
189 189
             ),
Please login to merge, or discard this patch.