From 5af75c95dd326ca4b3da295ee990250ddebf4315 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=9Cmit=20Tun=C3=A7?= Date: Fri, 24 Apr 2026 22:43:36 +0300 Subject: [PATCH] feat: add DatabaseDriverInterface to define standard database operations --- backend/app/Contracts/DatabaseDriverInterface.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app/Contracts/DatabaseDriverInterface.php b/backend/app/Contracts/DatabaseDriverInterface.php index 152f6ba..1271cc4 100644 --- a/backend/app/Contracts/DatabaseDriverInterface.php +++ b/backend/app/Contracts/DatabaseDriverInterface.php @@ -37,7 +37,7 @@ interface DatabaseDriverInterface /** * Export the database. */ - public function export(array $config): string; + public function export(array $config, array $filters = []): string; /** * Import the database.