News.php 263 B

1234567891011121314
  1. <?php
  2. namespace internship\bo;
  3. use n2n\reflection\ObjectAdapter;
  4. class News extends ObjectAdapter implements \JsonSerializable {
  5. public int $id;
  6. public string $text;
  7. public function jsonSerialize(): mixed {
  8. // TODO: Implement jsonSerialize() method.
  9. }
  10. }