コード例 #1
0
ファイル: DeleteREST.php プロジェクト: jiangrongyong/docgen
 protected function buildResponses()
 {
     parent::buildResponses();
     $this->responses['204'] = ['description' => 'Success'];
 }
コード例 #2
0
ファイル: CreateREST.php プロジェクト: jiangrongyong/docgen
 protected function buildResponses()
 {
     parent::buildResponses();
     $this->responses['201'] = ['description' => 'Success', 'schema' => ['$ref' => "#/definitions/{$this->model->modelClass}"]];
 }
コード例 #3
0
ファイル: IndexREST.php プロジェクト: jiangrongyong/docgen
 protected function buildResponses()
 {
     parent::buildResponses();
     $this->responses['200'] = ['description' => 'Success', 'schema' => ['type' => Swagger::DATA_TYPE_ARRAY, 'items' => ['$ref' => "#/definitions/{$this->model->modelClass}"]]];
 }