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

Fix Tenant DB manager tests

This commit is contained in:
Samuel Štancl 2019-09-17 17:59:40 +02:00
parent 7e645a3312
commit 5e9b421aa6
5 changed files with 49 additions and 96 deletions

View file

@ -256,6 +256,12 @@ class Tenant implements ArrayAccess
return $this;
}
/** @alias put */
public function set($key, $value = null): self
{
return $this->put($key, $value);
}
public function __get($key)
{
return $this->get($key);