| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | class RunnableDelete extends Delete implements DDLPreparable { |
||
| 13 | /** @use CreateDDLRunnable<int> */ |
||
| 14 | use CreateDDLRunnable; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @param array<string, mixed> $params |
||
| 18 | * @return int |
||
| 19 | */ |
||
| 20 | public function run(array $params = []) { |
||
| 21 | return $this->prepare()->run($params); |
||
|
|
|||
| 22 | } |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @return DDLRunnable<int> |
||
| 26 | */ |
||
| 27 | public function prepare(): DDLRunnable { |
||
| 31 | ); |
||
| 32 | } |
||
| 34 |