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;
    }