Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. <?php
  2.  
  3. namespace Illuminate\Contracts\Support;
  4.  
  5. interface Jsonable
  6. {
  7. /**
  8. * Convert the object to its JSON representation.
  9. *
  10. * @param int $options
  11. * @return string
  12. */
  13. public function toJson($options = 0);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement