Types/src/SqlType.php

11 lines
167 B
PHP
Raw Normal View History

2024-11-08 16:30:45 +01:00
<?php
namespace Nest\Types;
interface SqlType
{
public function fromSql(string|int|array $value): mixed;
public function toSql(mixed $value): string|int|array;
}