@@ -231,7 +231,7 @@ |
||
231 | 231 | $reflection = new ReflectionClass($className); |
232 | 232 | |
233 | 233 | if ($reflection->isInterface()) { |
234 | - $publicMethods = array_map(function (ReflectionMethod $method) { |
|
234 | + $publicMethods = array_map(function(ReflectionMethod $method) { |
|
235 | 235 | return $method->name; |
236 | 236 | }, $reflection->getMethods(ReflectionMethod::IS_PUBLIC)); |
237 | 237 |