From 07d201c09d9fe801cafe5b1d295606ae36da4374 Mon Sep 17 00:00:00 2001 From: Randall Wilk Date: Thu, 28 Sep 2023 11:12:02 -0500 Subject: [PATCH] Fix test custom driver --- tests/Support/Drivers/CustomDriver.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/Support/Drivers/CustomDriver.php b/tests/Support/Drivers/CustomDriver.php index cb40eff..968d60e 100644 --- a/tests/Support/Drivers/CustomDriver.php +++ b/tests/Support/Drivers/CustomDriver.php @@ -4,6 +4,7 @@ namespace Rawilk\Settings\Tests\Support\Drivers; +use Illuminate\Contracts\Support\Arrayable; use Rawilk\Settings\Contracts\Driver; final class CustomDriver implements Driver @@ -27,4 +28,9 @@ public function set(string $key, $value = null, $teamId = null): void { // } + + public function all($teamId = null, $keys = null): array|Arrayable + { + return []; + } }