Fixes ACCOUNTS-322

This commit is contained in:
ErickSkrauch 2018-01-02 19:29:34 +03:00
parent fc05257535
commit 120057b66c

View File

@ -2,12 +2,15 @@
namespace api\aop;
use api\aop\aspects;
use Doctrine\Common\Annotations\AnnotationReader;
use Go\Core\AspectContainer;
use Go\Core\AspectKernel as BaseAspectKernel;
class AspectKernel extends BaseAspectKernel {
protected function configureAop(AspectContainer $container): void {
AnnotationReader::addGlobalIgnoredName('url');
$container->registerAspect(new aspects\MockDataAspect());
$container->registerAspect(new aspects\CollectMetricsAspect());
}