Method |
Description |
|
addResource ( string $resource ) |
Add an AOP resource to the container |
|
getAdvisor ( string $id ) : Go\Aop\Advisor |
Returns an advisor by identifier |
|
getAspect ( string $aspectName ) : Go\Aop\Aspect |
Returns an aspect by id or class name |
|
getByTag ( string $tag ) : array |
Return list of service tagged with marker |
|
getPointcut ( string $id ) : Go\Aop\Pointcut |
Returns a pointcut by identifier |
|
getResources ( ) : array |
Returns the list of AOP resources |
|
isFresh ( integer $timestamp ) : boolean |
Checks the freshness of AOP cache |
|
registerAdvisor ( Go\Aop\Advisor $advisor, string $id ) |
Store the advisor in the container |
|
registerAspect ( Go\Aop\Aspect $aspect ) |
Register an aspect in the container |
|
registerPointcut ( Go\Aop\Pointcut $pointcut, string $id ) |
Store the pointcut in the container |
|