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