8 lines
126 B
PHP
8 lines
126 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Arendsen\FluxQueryBuilder\Builder;
|
||
|
|
|
||
|
|
interface QueryBuilderInterface
|
||
|
|
{
|
||
|
|
public function build(): string;
|
||
|
|
}
|