Go\Aop\Pointcut\PointcutReference::getPointcut PHP 메소드

getPointcut() 공개 메소드

Returns a real pointcut from the container
public getPointcut ( ) : Go\Aop\Pointcut
리턴 Go\Aop\Pointcut
    public function getPointcut()
    {
        if (!$this->pointcut) {
            $this->pointcut = $this->container->getPointcut($this->pointcutName);
        }
        return $this->pointcut;
    }