8 lines
120 B
PHP
8 lines
120 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Arendsen\FluxQueryBuilder\Type;
|
||
|
|
|
||
|
|
interface TypeInterface
|
||
|
|
{
|
||
|
|
public function __toString(): string;
|
||
|
|
}
|