Completed
Pull Request — master (#256)
by Alexander
06:46
created
src/Proxy/FunctionProxy.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,6 @@
 block discarded – undo
18 18
 use Go\Core\LazyAdvisorAccessor;
19 19
 use Go\ParserReflection\ReflectionFileNamespace;
20 20
 use ReflectionFunction;
21
-use ReflectionFunctionAbstract;
22 21
 
23 22
 /**
24 23
  * Function proxy builder that is used to generate a proxy-function from the list of joinpoints
Please login to merge, or discard this patch.
src/Proxy/AbstractProxy.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -208,7 +208,7 @@
 block discarded – undo
208 208
         $modifiersLine        = '';
209 209
         if ($reflectionReturnType) {
210 210
             $nsPrefix             = $reflectionReturnType->isBuiltin() ? '' : '\\';
211
-            $reflectionReturnType = $nsPrefix . (string)$reflectionReturnType;
211
+            $reflectionReturnType = $nsPrefix . (string) $reflectionReturnType;
212 212
         }
213 213
         if ($functionLike instanceof ReflectionMethod) {
214 214
             $modifiersLine = join(' ', Reflection::getModifierNames($functionLike->getModifiers()));
Please login to merge, or discard this patch.