table = $table; } public function getTable(): string { return $this->table; } public function build(array &$params): ?string { $table = $this->sql->tableName($this->getTable()); $where = $this->getWhereClause($params); return "DELETE FROM $table$where"; } }