PHP 인터페이스 Neos\Flow\Aop\Advice\AdviceInterface

In Flow all advices are implemented as interceptors.
또한 보기: Neos\Flow\Aop\InterceptorInterface
파일 보기 프로젝트 열기: neos/flow-development-collection

공개 메소드들

메소드 설명
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