Demo\Aspect\AwesomeAspectKernel::configureAop PHP Метод

configureAop() защищенный Метод

Configure an AspectContainer with advisors, aspects and pointcuts
protected configureAop ( Go\Core\AspectContainer $container ) : void
$container Go\Core\AspectContainer
Результат void
    protected function configureAop(AspectContainer $container)
    {
        $container->registerAspect(new DeclareErrorAspect());
        $container->registerAspect(new CachingAspect());
        $container->registerAspect(new LoggingAspect());
        $container->registerAspect(new IntroductionAspect());
        $container->registerAspect(new PropertyInterceptorAspect());
        $container->registerAspect(new FunctionInterceptorAspect());
        $container->registerAspect(new FluentInterfaceAspect());
        $container->registerAspect(new HealthyLiveAspect());
        $container->registerAspect(new DynamicMethodsAspect());
    }
AwesomeAspectKernel