Go\Aop\Pointcut\PointcutReference::getPointcut PHP Method

getPointcut() public method

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