PHP Class Go\Aop\Pointcut\CFlowBelowMethodPointcut

Inheritance: implements Go\Aop\PointFilter, implements Go\Aop\Pointcut, use trait PointcutClassFilterTrait
Datei anzeigen Open project: goaop/framework

Protected Properties

Property Type Description
$internalClassFilter null | Go\Aop\PointFilter Filter for the class
$internalPointFilter null | Go\Aop\PointFilter Filter for the points

Public Methods

Method Description
__construct ( Go\Aop\Pointcut $pointcut ) Control flow below constructor
getKind ( ) : integer Returns the kind of point filter
matches ( mixed $point, null | mixed $context = null, null | string | object $instance = null, array $arguments = null ) : boolean Performs matching of point of code

Method Details

__construct() public method

Control flow below constructor
public __construct ( Go\Aop\Pointcut $pointcut )
$pointcut Go\Aop\Pointcut Instance of pointcut, that will be used for matching

getKind() public method

Returns the kind of point filter
public getKind ( ) : integer
return integer

matches() public method

Performs matching of point of code
public matches ( mixed $point, null | mixed $context = null, null | string | object $instance = null, array $arguments = null ) : boolean
$point mixed Specific part of code, can be any Reflection class
$context null | mixed Related context, can be class or namespace
$instance null | string | object Invocation instance or string for static calls
$arguments array Dynamic arguments for method
return boolean

Property Details

$internalClassFilter protected_oe property

Filter for the class
protected null|PointFilter,Go\Aop $internalClassFilter
return null | Go\Aop\PointFilter

$internalPointFilter protected_oe property

Filter for the points
protected null|PointFilter,Go\Aop $internalPointFilter
return null | Go\Aop\PointFilter