Method | Description | |
---|---|---|
getRuntimeEvaluationsDefinition ( ) : array | Returns runtime evaluations for a previously matched pointcut | |
hasRuntimeEvaluationsDefinition ( ) : boolean | Returns TRUE if this filter holds runtime evaluations for a previously matched pointcut | |
matches ( string $className, string $methodName, string $methodDeclaringClassName, mixed $pointcutQueryIdentifier ) : boolean | Checks if the specified class and method matches against the filter | |
reduceTargetClassNames ( |
This method is used to optimize the matching process. |
public getRuntimeEvaluationsDefinition ( ) : array | ||
return | array | Runtime evaluations |
public hasRuntimeEvaluationsDefinition ( ) : boolean | ||
return | boolean | TRUE if this filter has runtime evaluations |
public matches ( string $className, string $methodName, string $methodDeclaringClassName, mixed $pointcutQueryIdentifier ) : boolean | ||
$className | string | Name of the class to check against |
$methodName | string | Name of the method to check against |
$methodDeclaringClassName | string | Name of the class the method was originally declared in |
$pointcutQueryIdentifier | mixed | Some identifier for this query - must at least differ from a previous identifier. Used for circular reference detection. |
return | boolean | TRUE if the class / method match, otherwise FALSE |
public reduceTargetClassNames ( |
||
$classNameIndex | An index of class names | |
return | The filtered result, with pointcuts possibly covered by this filter |