JsonObject.php 353 B

123456789101112131415161718192021
  1. <?php
  2. namespace TestApp\Log\Object;
  3. use JsonSerializable;
  4. /**
  5. * used for testing when an serializable is passed to a logger
  6. */
  7. class JsonObject implements JsonSerializable
  8. {
  9. /**
  10. * String representation of the object
  11. *
  12. * @return array
  13. */
  14. public function jsonSerialize()
  15. {
  16. return ['hello' => 'world'];
  17. }
  18. }