コード例 #1
0
ファイル: ReflectionClass.php プロジェクト: crodas/notoj
 public function getAnnotations()
 {
     if ($this->annotation === NULL) {
         $this->annotation = Notoj::parseDocComment($this);
     }
     return $this->annotation;
 }
コード例 #2
0
ファイル: ReflectionFunction.php プロジェクト: agpmedia/notoj
 public function __construct($name)
 {
     parent::__construct($name);
     $this->annotation = Notoj::parseDocComment($this);
 }