Add Types

Signed-off-by: davidarendsen <davidarendsen@hey.com>
This commit is contained in:
davidarendsen 2022-08-15 21:22:01 +00:00
commit a50e33ba04
5 changed files with 93 additions and 1 deletions

View file

@ -0,0 +1,8 @@
<?php
namespace Arendsen\FluxQueryBuilder\Type;
interface TypeInterface
{
public function __toString(): string;
}