@@ -1,12 +1,12 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Go! AOP framework |
|
| 4 | - * |
|
| 5 | - * @copyright Copyright 2014, Lisachenko Alexander <[email protected]> |
|
| 6 | - * |
|
| 7 | - * This source file is subject to the license that is bundled |
|
| 8 | - * with this source code in the file LICENSE. |
|
| 9 | - */ |
|
| 3 | + * Go! AOP framework |
|
| 4 | + * |
|
| 5 | + * @copyright Copyright 2014, Lisachenko Alexander <[email protected]> |
|
| 6 | + * |
|
| 7 | + * This source file is subject to the license that is bundled |
|
| 8 | + * with this source code in the file LICENSE. |
|
| 9 | + */ |
|
| 10 | 10 | |
| 11 | 11 | namespace Demo\Aspect; |
| 12 | 12 | |
@@ -39,9 +39,9 @@ discard block |
||
| 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 | } |
@@ -1,12 +1,12 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Go! AOP framework |
|
| 4 | - * |
|
| 5 | - * @copyright Copyright 2013, Lisachenko Alexander <[email protected]> |
|
| 6 | - * |
|
| 7 | - * This source file is subject to the license that is bundled |
|
| 8 | - * with this source code in the file LICENSE. |
|
| 9 | - */ |
|
| 3 | + * Go! AOP framework |
|
| 4 | + * |
|
| 5 | + * @copyright Copyright 2013, Lisachenko Alexander <[email protected]> |
|
| 6 | + * |
|
| 7 | + * This source file is subject to the license that is bundled |
|
| 8 | + * with this source code in the file LICENSE. |
|
| 9 | + */ |
|
| 10 | 10 | |
| 11 | 11 | namespace Go\Aop\Framework; |
| 12 | 12 | |
@@ -83,10 +83,10 @@ discard block |
||
| 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 |
@@ -1,12 +1,12 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Go! AOP framework |
|
| 4 | - * |
|
| 5 | - * @copyright Copyright 2012, Lisachenko Alexander <[email protected]> |
|
| 6 | - * |
|
| 7 | - * This source file is subject to the license that is bundled |
|
| 8 | - * with this source code in the file LICENSE. |
|
| 9 | - */ |
|
| 3 | + * Go! AOP framework |
|
| 4 | + * |
|
| 5 | + * @copyright Copyright 2012, Lisachenko Alexander <[email protected]> |
|
| 6 | + * |
|
| 7 | + * This source file is subject to the license that is bundled |
|
| 8 | + * with this source code in the file LICENSE. |
|
| 9 | + */ |
|
| 10 | 10 | |
| 11 | 11 | namespace Go\Aop\Pointcut; |
| 12 | 12 | |
@@ -55,6 +55,6 @@ discard block |
||
| 55 | 55 | */ |
| 56 | 56 | public function getKind() |
| 57 | 57 | { |
| 58 | - return $this->filterKind; |
|
| 58 | + return $this->filterKind; |
|
| 59 | 59 | } |
| 60 | 60 | } |
@@ -1,12 +1,12 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Go! AOP framework |
|
| 4 | - * |
|
| 5 | - * @copyright Copyright 2014, Lisachenko Alexander <[email protected]> |
|
| 6 | - * |
|
| 7 | - * This source file is subject to the license that is bundled |
|
| 8 | - * with this source code in the file LICENSE. |
|
| 9 | - */ |
|
| 3 | + * Go! AOP framework |
|
| 4 | + * |
|
| 5 | + * @copyright Copyright 2014, Lisachenko Alexander <[email protected]> |
|
| 6 | + * |
|
| 7 | + * This source file is subject to the license that is bundled |
|
| 8 | + * with this source code in the file LICENSE. |
|
| 9 | + */ |
|
| 10 | 10 | |
| 11 | 11 | namespace Go\Aop\Support; |
| 12 | 12 | |
@@ -34,7 +34,7 @@ discard block |
||
| 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 | /** |
@@ -1,12 +1,12 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Go! AOP framework |
|
| 4 | - * |
|
| 5 | - * @copyright Copyright 2015, Lisachenko Alexander <[email protected]> |
|
| 6 | - * |
|
| 7 | - * This source file is subject to the license that is bundled |
|
| 8 | - * with this source code in the file LICENSE. |
|
| 9 | - */ |
|
| 3 | + * Go! AOP framework |
|
| 4 | + * |
|
| 5 | + * @copyright Copyright 2015, Lisachenko Alexander <[email protected]> |
|
| 6 | + * |
|
| 7 | + * This source file is subject to the license that is bundled |
|
| 8 | + * with this source code in the file LICENSE. |
|
| 9 | + */ |
|
| 10 | 10 | |
| 11 | 11 | namespace Go\Instrument\FileSystem; |
| 12 | 12 | |
@@ -1,12 +1,12 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Go! AOP framework |
|
| 4 | - * |
|
| 5 | - * @copyright Copyright 2011, Lisachenko Alexander <[email protected]> |
|
| 6 | - * |
|
| 7 | - * This source file is subject to the license that is bundled |
|
| 8 | - * with this source code in the file LICENSE. |
|
| 9 | - */ |
|
| 3 | + * Go! AOP framework |
|
| 4 | + * |
|
| 5 | + * @copyright Copyright 2011, Lisachenko Alexander <[email protected]> |
|
| 6 | + * |
|
| 7 | + * This source file is subject to the license that is bundled |
|
| 8 | + * with this source code in the file LICENSE. |
|
| 9 | + */ |
|
| 10 | 10 | |
| 11 | 11 | namespace Go\Instrument\Transformer; |
| 12 | 12 | |
@@ -1,12 +1,12 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Go! AOP framework |
|
| 4 | - * |
|
| 5 | - * @copyright Copyright 2012, Lisachenko Alexander <[email protected]> |
|
| 6 | - * |
|
| 7 | - * This source file is subject to the license that is bundled |
|
| 8 | - * with this source code in the file LICENSE. |
|
| 9 | - */ |
|
| 3 | + * Go! AOP framework |
|
| 4 | + * |
|
| 5 | + * @copyright Copyright 2012, Lisachenko Alexander <[email protected]> |
|
| 6 | + * |
|
| 7 | + * This source file is subject to the license that is bundled |
|
| 8 | + * with this source code in the file LICENSE. |
|
| 9 | + */ |
|
| 10 | 10 | |
| 11 | 11 | namespace Go\Proxy; |
| 12 | 12 | |
@@ -1,12 +1,12 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Go! AOP framework |
|
| 4 | - * |
|
| 5 | - * @copyright Copyright 2013, Lisachenko Alexander <[email protected]> |
|
| 6 | - * |
|
| 7 | - * This source file is subject to the license that is bundled |
|
| 8 | - * with this source code in the file LICENSE. |
|
| 9 | - */ |
|
| 3 | + * Go! AOP framework |
|
| 4 | + * |
|
| 5 | + * @copyright Copyright 2013, Lisachenko Alexander <[email protected]> |
|
| 6 | + * |
|
| 7 | + * This source file is subject to the license that is bundled |
|
| 8 | + * with this source code in the file LICENSE. |
|
| 9 | + */ |
|
| 10 | 10 | |
| 11 | 11 | namespace Go\Proxy; |
| 12 | 12 | |
@@ -1,12 +1,12 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Go! AOP framework |
|
| 4 | - * |
|
| 5 | - * @copyright Copyright 2014, Lisachenko Alexander <[email protected]> |
|
| 6 | - * |
|
| 7 | - * This source file is subject to the license that is bundled |
|
| 8 | - * with this source code in the file LICENSE. |
|
| 9 | - */ |
|
| 3 | + * Go! AOP framework |
|
| 4 | + * |
|
| 5 | + * @copyright Copyright 2014, Lisachenko Alexander <[email protected]> |
|
| 6 | + * |
|
| 7 | + * This source file is subject to the license that is bundled |
|
| 8 | + * with this source code in the file LICENSE. |
|
| 9 | + */ |
|
| 10 | 10 | |
| 11 | 11 | namespace Go\Instrument\Transformer; |
| 12 | 12 | |