10 lines
167 B
PHP
10 lines
167 B
PHP
<?php
|
|
|
|
namespace Nest\Types;
|
|
|
|
interface SqlType
|
|
{
|
|
public function fromSql(string|int|array $value): mixed;
|
|
|
|
public function toSql(mixed $value): string|int|array;
|
|
}
|