blob: f5641c308c43f54bb6a858ef8aa879153fa649c4 [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3namespace Illuminate\Contracts\Support;
4
5interface 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}