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

28 lines
478 B
PHP

<?php
/*
* User
*/
namespace \Models;
/*
* User
*/
class User {
/* @var int $id */
private $id;
/* @var string $username */
private $username;
/* @var string $firstName */
private $firstName;
/* @var string $lastName */
private $lastName;
/* @var string $email */
private $email;
/* @var string $password */
private $password;
/* @var string $phone */
private $phone;
/* @var int $userStatus User Status */
private $userStatus;
}