コード例 #1
0
ファイル: ServiceApi.php プロジェクト: jiangrongyong/docgen
 protected function buildDescription()
 {
     $annotationParser = new AnnotationParser($this->serviceClass);
     if (!is_null($description = $annotationParser->getMethodDesc($this->action))) {
         $this->description = $description;
     }
 }