Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
1 | <?php |
||
28 | protected function configureAop(AspectContainer $container) |
||
29 | { |
||
30 | $container->registerAspect(new DeclareErrorAspect()); |
||
31 | $container->registerAspect(new CachingAspect()); |
||
32 | $container->registerAspect(new LoggingAspect()); |
||
33 | $container->registerAspect(new IntroductionAspect()); |
||
34 | $container->registerAspect(new PropertyInterceptorAspect()); |
||
35 | $container->registerAspect(new FunctionInterceptorAspect()); |
||
36 | $container->registerAspect(new FluentInterfaceAspect()); |
||
37 | $container->registerAspect(new HealthyLiveAspect()); |
||
38 | $container->registerAspect(new DynamicMethodsAspect()); |
||
39 | } |
||
40 | } |
||
41 |