Completed
Push — master ( 412e57...d404ac )
by Alexander
04:50
created
demos/Demo/Aspect/LoggingAspect.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -39,9 +39,9 @@
 block discarded – undo
39 39
     public function beforeMethodExecution(MethodInvocation $invocation)
40 40
     {
41 41
         echo 'Calling Before Interceptor for ',
42
-             $invocation,
43
-             ' with arguments: ',
44
-             json_encode($invocation->getArguments()),
45
-             PHP_EOL;
42
+                $invocation,
43
+                ' with arguments: ',
44
+                json_encode($invocation->getArguments()),
45
+                PHP_EOL;
46 46
     }
47 47
 }
Please login to merge, or discard this patch.
src/Aop/Framework/BaseAdvice.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -150,7 +150,7 @@
 block discarded – undo
150 150
         }
151 151
 
152 152
         if ($useWrappedClosure) {
153
-            return function () use ($aspect, $refMethod) {
153
+            return function() use ($aspect, $refMethod) {
154 154
                 return $refMethod->invokeArgs($aspect, func_get_args());
155 155
             };
156 156
         } else {
Please login to merge, or discard this patch.