Skip to content

Commit

Permalink
Fix test custom driver
Browse files Browse the repository at this point in the history
  • Loading branch information
rawilk committed Sep 28, 2023
1 parent b32c6b3 commit 07d201c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/Support/Drivers/CustomDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -27,4 +28,9 @@ public function set(string $key, $value = null, $teamId = null): void
{
//
}

public function all($teamId = null, $keys = null): array|Arrayable
{
return [];
}
}

0 comments on commit 07d201c

Please sign in to comment.