blob: 6b73730927c6d2b555e391e7da6636b96ada2e75 [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3namespace Tightenco\Collect\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}