Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ca2527e

Browse files
Change visibility AbstractDMLQueryBuilder::class. (#229)
1 parent 2d26280 commit ca2527e

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

src/DMLQueryBuilder.php

-11
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@
1111
use Yiisoft\Db\Expression\ExpressionInterface;
1212
use Yiisoft\Db\Query\QueryInterface;
1313
use Yiisoft\Db\QueryBuilder\AbstractDMLQueryBuilder;
14-
use Yiisoft\Db\QueryBuilder\QueryBuilderInterface;
15-
use Yiisoft\Db\Schema\QuoterInterface;
16-
use Yiisoft\Db\Schema\SchemaInterface;
1714

1815
use function implode;
1916
use function ltrim;
@@ -24,14 +21,6 @@
2421
*/
2522
final class DMLQueryBuilder extends AbstractDMLQueryBuilder
2623
{
27-
public function __construct(
28-
QueryBuilderInterface $queryBuilder,
29-
private QuoterInterface $quoter,
30-
private SchemaInterface $schema
31-
) {
32-
parent::__construct($queryBuilder, $quoter, $schema);
33-
}
34-
3524
public function insertWithReturningPks(string $table, QueryInterface|array $columns, array &$params = []): string
3625
{
3726
throw new NotSupportedException(__METHOD__ . '() is not supported by SQLite.');

0 commit comments

Comments
 (0)