Programming Language PHP

Namespace Latitude\QueryBuilder

Class EngineInterface

Method/Function flattenSql

Total Examples 2

2 code examples of PHP Latitude\QueryBuilder\EngineInterface::flattenSql extracted from open source projects

Was this example useful?
0
                                                    public function sql(EngineInterface $engine): string
    {
        return $engine->flattenSql($this->separator, ...$this->statements);
    }
                                            
Was this example useful?
0
                                                    public function sql(EngineInterface $engine): string
    {
        return $engine->flattenSql('.', ...$this->identifiers);
    }