|
1
|
<?php |
|
2
|
|
|
3
|
namespace IlluminateAgnostic\Arr\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
|
} |
|
15
|
|