1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 16:14:02 +00:00
This commit is contained in:
Samuel Štancl 2019-09-05 19:27:20 +02:00
commit 98cb49b1c0
2 changed files with 4 additions and 4 deletions

View file

@ -37,7 +37,7 @@ class Tenant implements ArrayAccess
/** /**
* Does this tenant exist in the storage. * Does this tenant exist in the storage.
* *
* @var boolean * @var bool
*/ */
private $persisted = false; private $persisted = false;
@ -59,7 +59,7 @@ class Tenant implements ArrayAccess
public function persisted() public function persisted()
{ {
$this->persisted = true; $this->persisted = true;
return $this; return $this;
} }
@ -99,4 +99,4 @@ class Tenant implements ArrayAccess
{ {
return $this->data[$name] ?? null; return $this->data[$name] ?? null;
} }
} }

View file

@ -77,4 +77,4 @@ class TenantManagerv2
{ {
return config('tenancy.bootstrappers'); return config('tenancy.bootstrappers');
} }
} }