You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LuDbo.php 205B

12345678910111213
  1. <?php
  2. namespace Luticate\Utils;
  3. abstract class LuDbo implements \JsonSerializable {
  4. /**
  5. * @return string
  6. */
  7. public function __toString()
  8. {
  9. return json_encode($this);
  10. }
  11. }