PHP 클래스 Go\Aop\Framework\AbstractJoinpoint

Join points are points in the execution of the system, such as method calls, where behavior supplied by aspects is combined. A join point is a point in the execution of the program, which is used to define the dynamic structure of a crosscutting concern.
상속: implements Go\Aop\Intercept\Joinpoint
파일 보기 프로젝트 열기: goaop/framework 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$advices array | Go\Aop\Advice[] List of advices
$current integer Current advice index
$level integer Recursion level for invocation
$stackFrames array Stack frames to work with recursive calls or with cross-calls inside object

공개 메소드들

메소드 설명
__construct ( array $advices ) Initializes list of advices for current joinpoint
sortAdvices ( array $advices ) : array | Go\Aop\Advice[] Sorts advices by priority

메소드 상세

__construct() 공개 메소드

Initializes list of advices for current joinpoint
public __construct ( array $advices )
$advices array List of advices

sortAdvices() 공개 정적인 메소드

Sorts advices by priority
public static sortAdvices ( array $advices ) : array | Go\Aop\Advice[]
$advices array
리턴 array | Go\Aop\Advice[] Sorted list of advices

프로퍼티 상세

$advices 보호되어 있는 프로퍼티

List of advices
protected array|Advice[],Go\Aop $advices
리턴 array | Go\Aop\Advice[]

$current 보호되어 있는 프로퍼티

Current advice index
protected int $current
리턴 integer

$level 보호되어 있는 프로퍼티

Recursion level for invocation
protected int $level
리턴 integer

$stackFrames 보호되어 있는 프로퍼티

Stack frames to work with recursive calls or with cross-calls inside object
protected array $stackFrames
리턴 array