Method |
Description |
|
__construct ( Go\Core\AspectContainer $container ) |
Default constructor for the builder |
|
after ( string $pointcutExpression, Closure $advice ) |
Declares the "After" hook for specific pointcut expression |
|
afterThrowing ( string $pointcutExpression, Closure $advice ) |
Declares the "AfterThrowing" hook for specific pointcut expression |
|
around ( string $pointcutExpression, Closure $advice ) |
Declares the "Around" hook for specific pointcut expression |
|
before ( string $pointcutExpression, Closure $advice ) |
Declares the "Before" hook for specific pointcut expression |
|
declareError ( string $pointcutExpression, string $message, integer $level = E_USER_ERROR ) |
Declares the error message for specific pointcut expression |
|