PHP Class Go\Aop\Framework\BaseAdvice

This class describe an action taken by the AOP framework at a particular joinpoint. Different types of advice include "around", "before" and "after" advices. Around advice is an advice that surrounds a joinpoint such as a method invocation. This is the most powerful kind of advice. Around advices will perform custom behavior before and after the method invocation. They are responsible for choosing whether to proceed to the joinpoint or to shortcut executing by returning their own return value or throwing an exception. After and before advices are simple closures that will be invoked after and before main invocation. Framework model an advice as an PHP-closure interceptor, maintaining a chain of interceptors "around" the joinpoint: function (Joinpoint $joinPoint) { echo 'Before action'; call chain here with Joinpoint->proceed() method $result = $joinPoint->proceed(); echo 'After action'; return $result; }
Inheritance: implements Go\Aop\Framework\OrderedAdvice
Afficher le fichier Open project: goaop/framework Class Usage Examples

Protected Properties

Свойство Type Description
$localAdvicesCache array | Closur\Closure[] Local cache of advices for faster unserialization on big projects
$order integer Advice order

Méthodes publiques

Méthode Description
getAdviceOrder ( ) : integer Returns the advice order
serializeAdvice ( Closure $adviceMethod ) : array Serialize advice method into array
unserializeAdvice ( array $adviceData ) : Closure Unserialize an advice

Method Details

getAdviceOrder() public méthode

Returns the advice order
public getAdviceOrder ( ) : integer
Résultat integer

serializeAdvice() public static méthode

Serialize advice method into array
public static serializeAdvice ( Closure $adviceMethod ) : array
$adviceMethod Closure An advice for aspect
Résultat array

unserializeAdvice() public static méthode

Unserialize an advice
public static unserializeAdvice ( array $adviceData ) : Closure
$adviceData array Information about advice
Résultat Closure

Property Details

$localAdvicesCache protected_oe static_oe property

Local cache of advices for faster unserialization on big projects
protected static array|Closure[],Closur $localAdvicesCache
Résultat array | Closur\Closure[]

$order protected_oe property

Advice order
protected int $order
Résultat integer