Total Complexity | 5 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
12 | class RunnableInsert extends Insert implements DDLPreparable { |
||
13 | /** @use CreateDDLRunnable<int> */ |
||
14 | use CreateDDLRunnable; |
||
15 | |||
16 | /** |
||
17 | * @inheritDoc |
||
18 | */ |
||
19 | public function insertRows(iterable $rows) { |
||
32 | } |
||
33 | |||
34 | /** |
||
35 | * @inheritDoc |
||
36 | */ |
||
37 | public function run(array $params = []): int { |
||
39 | } |
||
40 | |||
41 | /** |
||
42 | * @return DDLRunnable<int> |
||
43 | */ |
||
44 | public function prepare(): DDLRunnable { |
||
51 |