PHP Class Go\Aop\Support\TruePointFilter

Inheritance: implements Go\Aop\PointFilter
Datei anzeigen Open project: goaop/framework Class Usage Examples

Public Methods

Method Description
getInstance ( ) : self Singleton pattern
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

Private Methods

Method Description
__construct ( ) Private class constructor

Method Details

getInstance() public static method

Singleton pattern
public static getInstance ( ) : self
return self

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