コード例 #1
0
ファイル: CachingAspect.php プロジェクト: redhead/cached
 /**
  * @param \Kdyby\Aop\JoinPoint\AroundMethod $m
  * @return \Cached\Cached
  */
 private function getAnnotation(Aop\JoinPoint\AroundMethod $m)
 {
     return $this->reader->getMethodAnnotation($m->getTargetReflection(), 'Cached\\Cached');
 }
コード例 #2
0
ファイル: SecuredAspect.php プロジェクト: klimesf/secured
 /**
  * @param \Kdyby\Aop\JoinPoint\AroundMethod $m
  * @return \Klimesf\Secured\Secured|null
  */
 private function getAnnotation(AroundMethod $m)
 {
     return $this->reader->getMethodAnnotation($m->getTargetReflection(), 'Klimesf\\Secured\\Secured');
 }