Beispiel #1
0
 protected function parseMethodAnnotatedWith(TokenIterator $tokens)
 {
     $tokens->nextUntil(self::TOK_IDENTIFIER);
     $annotation = $tokens->nextValue();
     $tokens->nextToken();
     // )
     return $this->matcherFactory->getMatcher('methodAnnotatedWith', $annotation);
 }