Go\Core\AspectContainer::getPointcut PHP Метод

getPointcut() публичный Метод

Returns a pointcut by identifier
public getPointcut ( string $id ) : Go\Aop\Pointcut
$id string Pointcut identifier
Результат Go\Aop\Pointcut
    public function getPointcut($id);

Usage Example

Пример #1
0
 /**
  * Returns a real pointcut from the container
  *
  * @return Pointcut
  */
 public function getPointcut()
 {
     if (!$this->pointcut) {
         $this->pointcut = $this->container->getPointcut($this->pointcutName);
     }
     return $this->pointcut;
 }
All Usage Examples Of Go\Core\AspectContainer::getPointcut