Xpressengine\Interception\InterceptionHandler::resolveAfterAdvisor PHP 메소드

resolveAfterAdvisor() 개인적인 메소드

advisorInfo에서 after advisor name을 추출한다.
private resolveAfterAdvisor ( string | array $priority ) : string | array | null
$priority string | array advisorInfo의 priority 영역
리턴 string | array | null after advisor name 목록
    private function resolveAfterAdvisor($priority)
    {
        if (is_array($priority) && isset($priority['after'])) {
            return $priority['after'];
        }
        return null;
    }