web-base/core/Objects/ApiObject.class.php

12 lines
218 B
PHP
Raw Normal View History

2020-02-09 23:02:19 +01:00
<?php
namespace Objects;
abstract class ApiObject implements \JsonSerializable {
public abstract function jsonSerialize(): array;
2020-02-09 23:02:19 +01:00
2022-02-20 16:53:26 +01:00
public function __toString() { return json_encode($this->jsonSerialize()); }
2020-02-09 23:02:19 +01:00
}