Fixed the missing closing doc chars and updated sample

This commit is contained in:
Branden Cash 2015-06-12 16:21:37 -07:00
parent 69c2f6f945
commit eed45a41a3
4 changed files with 15 additions and 12 deletions

View File

@ -44,12 +44,12 @@ class {{classname}} {
} }
} }
/** @var \{{invokerPackage}}\ApiClient instance of the ApiClient /** @var \{{invokerPackage}}\ApiClient instance of the ApiClient */
private $apiClient; private $apiClient;
/** /**
* @return \{{invokerPackage}}\ApiClient get the API client * @return \{{invokerPackage}}\ApiClient get the API client
*/ */
public function getApiClient() { public function getApiClient() {
return $this->apiClient; return $this->apiClient;
} }

View File

@ -43,11 +43,12 @@ class PetApi {
} }
} }
private $apiClient; // instance of the ApiClient /** @var \Swagger\Client\ApiClient instance of the ApiClient */
private $apiClient;
/** /**
* @return \Swagger\Client\ApiClient get the API client * @return \Swagger\Client\ApiClient get the API client
*/ */
public function getApiClient() { public function getApiClient() {
return $this->apiClient; return $this->apiClient;
} }

View File

@ -43,11 +43,12 @@ class StoreApi {
} }
} }
private $apiClient; // instance of the ApiClient /** @var \Swagger\Client\ApiClient instance of the ApiClient */
private $apiClient;
/** /**
* @return \Swagger\Client\ApiClient get the API client * @return \Swagger\Client\ApiClient get the API client
*/ */
public function getApiClient() { public function getApiClient() {
return $this->apiClient; return $this->apiClient;
} }

View File

@ -43,11 +43,12 @@ class UserApi {
} }
} }
private $apiClient; // instance of the ApiClient /** @var \Swagger\Client\ApiClient instance of the ApiClient */
private $apiClient;
/** /**
* @return \Swagger\Client\ApiClient get the API client * @return \Swagger\Client\ApiClient get the API client
*/ */
public function getApiClient() { public function getApiClient() {
return $this->apiClient; return $this->apiClient;
} }