/home/techb158/ileadtechnology.com/vendor/ramsey/uuid/src/Type
Edit: /home/techb158/ileadtechnology.com/vendor/ramsey/uuid/src/Type/TypeInterface.php (661B)
* @license http://opensource.org/licenses/MIT MIT
*/
declare(strict_types=1);
namespace Ramsey\Uuid\Type;
use JsonSerializable;
use Serializable;
/**
* TypeInterface ensures consistency in typed values returned by ramsey/uuid
*
* @psalm-immutable
*/
interface TypeInterface extends JsonSerializable, Serializable
{
public function toString(): string;
public function __toString(): string;
}