Интергрирован фреймворк для поддержки аспектного программирования

This commit is contained in:
ErickSkrauch
2017-11-13 17:14:58 +03:00
parent e6fe2f3755
commit 867c1a2b3b
3 changed files with 41 additions and 4 deletions

13
api/aop/AspectKernel.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
namespace api\aop;
use api\aop\aspects;
use Go\Core\AspectContainer;
use Go\Core\AspectKernel as BaseAspectKernel;
class AspectKernel extends BaseAspectKernel {
protected function configureAop(AspectContainer $container): void {
}
}