1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 19:04:02 +00:00

Add comment

This commit is contained in:
Samuel Štancl 2019-01-23 21:15:41 +01:00
parent 4ef285061a
commit 3cb5efc654

View file

@ -13,5 +13,5 @@ interface StorageDriver
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);
public function putMany(string $uuid, array $values); // todo better argument name than "values" for kv pairs?
}