- <?php
- namespace internship\bo;
- use n2n\reflection\ObjectAdapter;
- class News extends ObjectAdapter implements \JsonSerializable {
- public int $id;
- public string $text;
- public function jsonSerialize(): mixed {
- // TODO: Implement jsonSerialize() method.
- }
- }
|