File tree 1 file changed +0
-11
lines changed
1 file changed +0
-11
lines changed Original file line number Diff line number Diff line change 11
11
use Yiisoft \Db \Expression \ExpressionInterface ;
12
12
use Yiisoft \Db \Query \QueryInterface ;
13
13
use Yiisoft \Db \QueryBuilder \AbstractDMLQueryBuilder ;
14
- use Yiisoft \Db \QueryBuilder \QueryBuilderInterface ;
15
- use Yiisoft \Db \Schema \QuoterInterface ;
16
- use Yiisoft \Db \Schema \SchemaInterface ;
17
14
18
15
use function implode ;
19
16
use function ltrim ;
24
21
*/
25
22
final class DMLQueryBuilder extends AbstractDMLQueryBuilder
26
23
{
27
- public function __construct (
28
- QueryBuilderInterface $ queryBuilder ,
29
- private QuoterInterface $ quoter ,
30
- private SchemaInterface $ schema
31
- ) {
32
- parent ::__construct ($ queryBuilder , $ quoter , $ schema );
33
- }
34
-
35
24
public function insertWithReturningPks (string $ table , QueryInterface |array $ columns , array &$ params = []): string
36
25
{
37
26
throw new NotSupportedException (__METHOD__ . '() is not supported by SQLite. ' );
You can’t perform that action at this time.
0 commit comments