9 lines
132 B
PHP
Executable File
9 lines
132 B
PHP
Executable File
<?php
|
|
|
|
namespace think\contract;
|
|
|
|
interface Jsonable
|
|
{
|
|
public function toJson(int $options = JSON_UNESCAPED_UNICODE): string;
|
|
}
|