Exemplo n.º 1
0
 public function matches(InfoInterface $info)
 {
     foreach ($info->getAnnotationCandidates() as $anno) {
         if (preg_match($this->annotationRegex, $anno)) {
             return new PointcutMatch();
         }
     }
 }