PHP Класс Go\Aop\Framework\StaticInitializationJoinpoint

Наследование: extends AbstractJoinpoint
Показать файл Открыть проект

Защищенные свойства (Protected)

Свойство Тип Описание
$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