Example #1
0
 public static function getAnnotationsForMethods()
 {
     $cls = self::DECOgetCalledClass();
     if (!array_key_exists($cls, self::$methodAnnotations)) {
         self::$methodAnnotations[$cls] = ann\AnnotationReader::getClassMethodsAnnotations($cls);
     }
     return self::$methodAnnotations[$cls];
 }