PHP Класс Go\Core\GeneralAspectLoaderExtension

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

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

Метод Описание
getKind ( ) : string General aspect loader works with annotations from aspect
getTarget ( ) : string | array General aspect loader works only with methods of aspect
load ( Go\Aop\Aspect $aspect, mixed | ReflectionClass | ReflectionMethod | ReflectionProperty $reflection, mixed | null $metaInformation = null ) : array | Go\Aop\Pointcut[] | Go\Aop\Advisor[] Loads definition from specific point of aspect into the container
supports ( Go\Aop\Aspect $aspect, mixed | ReflectionClass | ReflectionMethod | ReflectionProperty $reflection, mixed | null $metaInformation = null ) : boolean Checks if loader is able to handle specific point of aspect

Защищенные методы

Метод Описание
getInterceptor ( $metaInformation, $adviceCallback ) : Go\Aop\Intercept\Interceptor

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

getInterceptor() защищенный Метод

protected getInterceptor ( $metaInformation, $adviceCallback ) : Go\Aop\Intercept\Interceptor
$metaInformation
$adviceCallback
Результат Go\Aop\Intercept\Interceptor

getKind() публичный Метод

For extension that works with annotations additional metaInformation will be passed
public getKind ( ) : string
Результат string

getTarget() публичный Метод

General aspect loader works only with methods of aspect
public getTarget ( ) : string | array
Результат string | array

load() публичный Метод

Loads definition from specific point of aspect into the container
public load ( Go\Aop\Aspect $aspect, mixed | ReflectionClass | ReflectionMethod | ReflectionProperty $reflection, mixed | null $metaInformation = null ) : array | Go\Aop\Pointcut[] | Go\Aop\Advisor[]
$aspect Go\Aop\Aspect Instance of aspect
$reflection mixed | ReflectionClass | ReflectionMethod | ReflectionProperty Reflection of point
$metaInformation mixed | null Additional meta-information, e.g. annotation for method
Результат array | Go\Aop\Pointcut[] | Go\Aop\Advisor[]

supports() публичный Метод

Checks if loader is able to handle specific point of aspect
public supports ( Go\Aop\Aspect $aspect, mixed | ReflectionClass | ReflectionMethod | ReflectionProperty $reflection, mixed | null $metaInformation = null ) : boolean
$aspect Go\Aop\Aspect Instance of aspect
$reflection mixed | ReflectionClass | ReflectionMethod | ReflectionProperty Reflection of point
$metaInformation mixed | null Additional meta-information, e.g. annotation for method
Результат boolean true if extension is able to create an advisor from reflection and metaInformation