Jsonable.php 241 B

123456789101112131415
  1. <?php
  2. namespace Illuminate\Contracts\Support;
  3. interface Jsonable
  4. {
  5. /**
  6. * Convert the object to its JSON representation.
  7. *
  8. * @param int $options
  9. * @return string
  10. */
  11. public function toJson($options = 0);
  12. }