Akihito Nakano 37df59d6f0 [PHP] Adjust the names (script, sample folder, generator) to lang option (#159)
* Prefix slim-petstore-server.sh with 'php-'

* Prefix slim sample folder

* Prefix ze-ph-petstore-server.sh with 'php-'

* Prefix ze-ph sample folder

* Prefix lumen-petstore-server.sh with 'php-'

* Prefix lumen sample folder
2018-05-28 13:49:47 +08:00

18 lines
231 B
PHP

<?php
/*
* ApiResponse
*/
namespace \Models;
/*
* ApiResponse
*/
class ApiResponse {
/* @var int $code */
private $code;
/* @var string $type */
private $type;
/* @var string $message */
private $message;
}