PHP Интерфейс Neos\Flow\Aop\Advice\AdviceInterface

In Flow all advices are implemented as interceptors.
См. также: Neos\Flow\Aop\InterceptorInterface
Показать файл Открыть проект

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

Метод Описание
getAdviceMethodName ( ) : string Returns the advice's method name which has been passed to the constructor
getAspectObjectName ( ) : string Returns the aspect's object name which has been passed to the constructor
invoke ( Neos\Flow\Aop\JoinPointInterface $joinPoint ) : mixed Invokes the advice method

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

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

Returns the advice's method name which has been passed to the constructor
public getAdviceMethodName ( ) : string
Результат string The name of the advice method

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

Returns the aspect's object name which has been passed to the constructor
public getAspectObjectName ( ) : string
Результат string The object name of the aspect

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

Invokes the advice method
public invoke ( Neos\Flow\Aop\JoinPointInterface $joinPoint ) : mixed
$joinPoint Neos\Flow\Aop\JoinPointInterface The current join point which is passed to the advice method
Результат mixed Optionally the result of the advice method