Initial commit

This commit is contained in:
simon
2017-11-22 19:13:00 -05:00
commit e3ab67e95c
133 changed files with 202341 additions and 0 deletions

26
include/User.php Normal file
View File

@@ -0,0 +1,26 @@
<?php
class User implements JsonSerializable
{
public $username;
public $status;
/**
* User constructor.
* @param $username
*/
public function __construct($username)
{
$this->username = $username;
}
public function jsonSerialize()
{
return [
"username" => $this->username
];
}
}