PHP 클래스 Go\Aop\Support\InheritanceClassFilter

상속: implements Go\Aop\PointFilter
파일 보기 프로젝트 열기: goaop/framework

보호된 프로퍼티들

프로퍼티 타입 설명
$parentClass string Instance class name to match

공개 메소드들

메소드 설명
__construct ( string $parentClassName ) Inheritance class matcher constructor
getKind ( ) : integer Returns the kind of point filter
matches ( mixed $class, null | mixed $context = null, null | string | object $instance = null, array $arguments = null ) : boolean Performs matching of point of code

메소드 상세

__construct() 공개 메소드

Inheritance class matcher constructor
public __construct ( string $parentClassName )
$parentClassName string Name of the parent class or interface to match

getKind() 공개 메소드

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

matches() 공개 메소드

Performs matching of point of code
public matches ( mixed $class, null | mixed $context = null, null | string | object $instance = null, array $arguments = null ) : boolean
$class 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
리턴 boolean

프로퍼티 상세

$parentClass 보호되어 있는 프로퍼티

Instance class name to match
protected string $parentClass
리턴 string