mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-05-27 17:09:15 +08:00
9 lines
132 B
PHP
9 lines
132 B
PHP
<?php
|
|
|
|
namespace think\contract;
|
|
|
|
interface Jsonable
|
|
{
|
|
public function toJson(int $options = JSON_UNESCAPED_UNICODE): string;
|
|
}
|