1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 20:54:03 +00:00

Add more storage features

This commit is contained in:
Samuel Štancl 2019-01-21 18:19:01 +01:00
parent 1fe599966b
commit 14f415914f
3 changed files with 53 additions and 8 deletions

View file

@ -11,5 +11,7 @@ interface StorageDriver
public function createTenant(string $domain, string $uuid): array;
public function deleteTenant(string $uuid): bool;
public function get(string $uuid, string $key);
public function getMany(string $uuid, array $keys);
public function put(string $uuid, string $key, $value);
public function putMany(string $uuid, array $values);
}