Completed
Push — 1.x ( 6a61a7...440334 )
by Alexander
02:59
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/ReflectionFunctionInvocation.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -83,10 +83,10 @@
 block discarded – undo
83 83
      *
84 84
      * @return object
85 85
      */
86
-     public function getStaticPart()
87
-     {
88
-         return $this->reflectionFunction;
89
-     }
86
+        public function getStaticPart()
87
+        {
88
+            return $this->reflectionFunction;
89
+        }
90 90
 
91 91
     /**
92 92
      * Invokes current function invocation with all interceptors
Please login to merge, or discard this patch.
src/Aop/Pointcut/TruePointcut.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,6 +55,6 @@
 block discarded – undo
55 55
      */
56 56
     public function getKind()
57 57
     {
58
-       return $this->filterKind;
58
+        return $this->filterKind;
59 59
     }
60 60
 }
Please login to merge, or discard this patch.
src/Aop/Support/AnnotatedReflectionMethod.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
      */
35 35
     public function getAnnotation($annotationName)
36 36
     {
37
-       return self::getReader()->getMethodAnnotation($this, $annotationName);
37
+        return self::getReader()->getMethodAnnotation($this, $annotationName);
38 38
     }
39 39
 
40 40
     /**
Please login to merge, or discard this patch.
src/Instrument/RawAnnotationReader.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -82,13 +82,13 @@
 block discarded – undo
82 82
         return $this->parser->parse($class->getDocComment(), 'class '.$class->getName());
83 83
     }
84 84
 
85
-     /**
86
-     * Gets the annotations applied to a method.
87
-     *
88
-     * @param ParsedReflectionMethod $method The ReflectionMethod of the method from which
89
-     *                                   the annotations should be read.
90
-     * @return array An array of Annotations.
91
-     */
85
+        /**
86
+         * Gets the annotations applied to a method.
87
+         *
88
+         * @param ParsedReflectionMethod $method The ReflectionMethod of the method from which
89
+         *                                   the annotations should be read.
90
+         * @return array An array of Annotations.
91
+         */
92 92
     public function getMethodAnnotations(ParsedReflectionMethod $method)
93 93
     {
94 94
         $this->parser->setTarget(Target::TARGET_METHOD);
Please login to merge, or discard this patch.