Initial Commit

This commit is contained in:
2020-02-09 23:02:19 +01:00
commit 62f67967ba
61 changed files with 25369 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<?php
namespace Objects;
abstract class ApiObject implements \JsonSerializable {
public abstract function jsonSerialize();
public function __construct() { }
public function __toString() { return json_encode($this); }
}
?>