12 lines
230 B
PHP
12 lines
230 B
PHP
<?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;
|
|
}
|