diff --git a/src/Interfaces/StorageDriver.php b/src/Interfaces/StorageDriver.php index eb2c15ed..8dbcf91e 100644 --- a/src/Interfaces/StorageDriver.php +++ b/src/Interfaces/StorageDriver.php @@ -13,5 +13,5 @@ interface StorageDriver public function get(string $uuid, string $key); public function getMany(string $uuid, array $keys): array; public function put(string $uuid, string $key, $value); - public function putMany(string $uuid, array $values): array; // todo better argument name than "values" for kv pairs? + public function putMany(string $uuid, array $values): array; } diff --git a/tests/TenantStorageTest.php b/tests/TenantStorageTest.php index 69388b38..bfbfa368 100644 --- a/tests/TenantStorageTest.php +++ b/tests/TenantStorageTest.php @@ -6,8 +6,6 @@ use Stancl\Tenancy\Interfaces\StorageDriver; class TenantStorageTest extends TestCase { - // todo find a way to run this for each storage driver (once there are more of them) - /** @test */ public function deleting_a_tenant_works() {