@@ -157,7 +157,7 @@ discard block |
||
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 |
||
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 | ), |