Programming Language PHP

Namespace Latitude\QueryBuilder

Class EngineInterface

Method/Function flattenParams

Total Examples 3

3 code examples of PHP Latitude\QueryBuilder\EngineInterface::flattenParams extracted from open source projects

Was this example useful?
0
                                                    public function params(EngineInterface $engine): array
    {
        return $engine->flattenParams(...$this->statements);
    }
                                            
Was this example useful?
0
                                                    public function params(EngineInterface $engine): array
    {
        return $engine->flattenParams(...$this->identifiers);
    }
                                            
Was this example useful?
0
                                                    public function params(EngineInterface $engine): array
    {
        return $engine->flattenParams(...$this->replacements);
    }