PHP Интерфейс Go\Aop\Intercept\FieldAccess

A field access is a joinpoint and can be intercepted by a field interceptor.
Наследование: extends Go\Aop\Intercept\Joinpoint
Показать файл Открыть проект Примеры использования интерфейса

Открытые методы

Метод Описание
getAccessType ( ) : integer Returns the access type.
getField ( ) : ReflectionProperty Gets the field being accessed.
getValue ( ) : mixed Gets the current value of property by reference
getValueToSet ( ) : mixed Gets the value that must be set to the field, applicable only for WRITE access type

Описание методов

getAccessType() публичный метод

Returns the access type.
public getAccessType ( ) : integer
Результат integer

getField() публичный метод

Gets the field being accessed.
public getField ( ) : ReflectionProperty
Результат ReflectionProperty the field being accessed.

getValue() публичный метод

Gets the current value of property by reference
public getValue ( ) : mixed
Результат mixed

getValueToSet() публичный метод

Gets the value that must be set to the field, applicable only for WRITE access type
public getValueToSet ( ) : mixed
Результат mixed