PHP Class Go\Aop\Pointcut\MagicMethodPointcut

Inheritance: implements Go\Aop\MethodMatcher, implements Go\Aop\Pointcut, use trait PointcutClassFilterTrait
ファイルを表示 Open project: goaop/framework Class Usage Examples

Protected Properties

Property Type Description
$methodName string Method name to match, can contain wildcards *,?
$modifierFilter Go\Aop\PointFilter Modifier filter for method
$regexp string Regular expression for matching

Public Methods

Method Description
__construct ( string $methodName, Go\Aop\PointFilter $modifierFilter = null ) Magic method matcher 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

NB: only public methods can be matched as __call and __callStatic are public
public __construct ( string $methodName, Go\Aop\PointFilter $modifierFilter = null )
$methodName string Name of the dynamic method to match or glob pattern
$modifierFilter Go\Aop\PointFilter Method modifier filter (static or not)

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

$methodName protected_oe property

Method name to match, can contain wildcards *,?
protected string $methodName
return string

$modifierFilter protected_oe property

Modifier filter for method
protected PointFilter,Go\Aop $modifierFilter
return Go\Aop\PointFilter

$regexp protected_oe property

Regular expression for matching
protected string $regexp
return string