From beb9a0a9035acb102cfdf3f7e9cd6652ada2ac36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Wed, 24 Apr 2019 09:22:12 +0200 Subject: [PATCH] Move todos to issues (#45) * Remove todo * Remove todo --- src/Interfaces/StorageDriver.php | 2 +- tests/TenantStorageTest.php | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) 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() {