File "SelectSQLBuilder.php"
Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/doctrine/dbal/src/SQL/Builder/SelectSQLBuilder.php
File size: 230 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Doctrine\DBAL\SQL\Builder;
use Doctrine\DBAL\Exception;
use Doctrine\DBAL\Query\SelectQuery;
interface SelectSQLBuilder
{
/** @throws Exception */
public function buildSQL(SelectQuery $query): string;
}