Your Name 7de67356f0 1
2025-11-14 16:05:17 +08:00

18 lines
331 B
PHP

<?php
declare(strict_types=1);
/**
* This file is part of Hyperf.
*
* @link https://www.hyperf.io
* @document https://hyperf.wiki
* @contact group@hyperf.io
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/
namespace Hyperf\Contract;
interface Jsonable
{
public function __toString(): string;
}