Example #1
0
 public static function getDocComment($reflection)
 {
     if (self::checkRawDocCommentParsingNeeded()) {
         $docComment = new Customweb_Annotation_DocComment();
         return $docComment->get($reflection);
     }
     return $reflection->getDocComment();
 }
 public static function clearCache()
 {
     self::$classes = array();
     self::$methods = array();
     self::$fields = array();
     self::$parsedFiles = array();
 }