5 lines
90 B
PHP
5 lines
90 B
PHP
<?php
|
|
interface AbstractQueryBuilder
|
|
{
|
|
public static function build($dbQuery, $query);
|
|
}
|