From e2b6e6d73cf3b54cd17470a3ff78dcd826194087 Mon Sep 17 00:00:00 2001 From: stancl Date: Wed, 4 Sep 2019 18:25:52 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/Tenant.php | 6 +++--- src/TenantManagerv2.php | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Tenant.php b/src/Tenant.php index 4f0275f9..7f62cd44 100644 --- a/src/Tenant.php +++ b/src/Tenant.php @@ -35,7 +35,7 @@ final class Tenant // todo implement an interface to allow for current tenant de /** * Does this tenant exist in the storage. * - * @var boolean + * @var bool */ private $persisted = false; @@ -57,7 +57,7 @@ final class Tenant // todo implement an interface to allow for current tenant de public function persisted() { $this->persisted = true; - + return $this; } @@ -90,4 +90,4 @@ final class Tenant // todo implement an interface to allow for current tenant de { return $this->data[$name]; } -} \ No newline at end of file +} diff --git a/src/TenantManagerv2.php b/src/TenantManagerv2.php index 92a9faab..b351fda0 100644 --- a/src/TenantManagerv2.php +++ b/src/TenantManagerv2.php @@ -4,7 +4,7 @@ declare(strict_types=1); namespace Stancl\Tenancy; -final class TenantManager +final class TenantManagerv2 { public function addTenant(Tenant $tenant): self { @@ -19,4 +19,4 @@ final class TenantManager return $this; } -} \ No newline at end of file +}