PHP 클래스 Go\Aop\Framework\StaticInitializationJoinpoint

상속: extends AbstractJoinpoint
파일 보기 프로젝트 열기: goaop/framework

보호된 프로퍼티들

프로퍼티 타입 설명
$reflectionClass ReflectionClass

공개 메소드들

메소드 설명
__construct ( string $className, string $type, array $advices ) Constructor for static initialization joinpoint
__invoke ( ) : mixed Invokes current joinpoint with all interceptors
__toString ( ) : string Returns a friendly description of current joinpoint
getStaticPart ( ) : ReflectionClass Returns the static part of this joinpoint.
getThis ( ) : object | null Returns the object that holds the current joinpoint's static part.
proceed ( ) : mixed Proceeds to the next interceptor in the chain.

메소드 상세

__construct() 공개 메소드

Constructor for static initialization joinpoint
public __construct ( string $className, string $type, array $advices )
$className string Name of the class
$type string Type of joinpoint
$advices array array List of advices for this invocation

__invoke() 최종 공개 메소드

Invokes current joinpoint with all interceptors
final public __invoke ( ) : mixed
리턴 mixed

__toString() 최종 공개 메소드

Returns a friendly description of current joinpoint
final public __toString ( ) : string
리턴 string

getStaticPart() 공개 메소드

Returns the static part of this joinpoint.
public getStaticPart ( ) : ReflectionClass
리턴 ReflectionClass

getThis() 공개 메소드

Returns the object that holds the current joinpoint's static part.
public getThis ( ) : object | null
리턴 object | null the object (can be null if the accessible object is static).

proceed() 공개 메소드

Proceeds to the next interceptor in the chain.
public proceed ( ) : mixed
리턴 mixed see the children interfaces' proceed definition.

프로퍼티 상세

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

protected ReflectionClass $reflectionClass
리턴 ReflectionClass