Skip to content

Commit a2953fd

Browse files
Change visibility AbstractDMLQueryBuilder::class. (#258)
1 parent 90bc486 commit a2953fd

1 file changed

Lines changed: 0 additions & 11 deletions

File tree

src/DMLQueryBuilder.php

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@
88
use Yiisoft\Db\Expression\Expression;
99
use Yiisoft\Db\Query\QueryInterface;
1010
use Yiisoft\Db\QueryBuilder\AbstractDMLQueryBuilder;
11-
use Yiisoft\Db\QueryBuilder\QueryBuilderInterface;
12-
use Yiisoft\Db\Schema\QuoterInterface;
13-
use Yiisoft\Db\Schema\SchemaInterface;
1411

1512
use function implode;
1613
use function reset;
@@ -20,14 +17,6 @@
2017
*/
2118
final class DMLQueryBuilder extends AbstractDMLQueryBuilder
2219
{
23-
public function __construct(
24-
private QueryBuilderInterface $queryBuilder,
25-
private QuoterInterface $quoter,
26-
private SchemaInterface $schema
27-
) {
28-
parent::__construct($queryBuilder, $quoter, $schema);
29-
}
30-
3120
public function insertWithReturningPks(string $table, QueryInterface|array $columns, array &$params = []): string
3221
{
3322
$sql = $this->insert($table, $columns, $params);

0 commit comments

Comments
 (0)