From 609ef58e3a950eaec89a1861070adbdd91e2f0ff Mon Sep 17 00:00:00 2001 From: stancl Date: Sun, 3 May 2020 15:33:30 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/Facades/Tenant.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Facades/Tenant.php b/src/Facades/Tenant.php index 8f331006..37d1b138 100644 --- a/src/Facades/Tenant.php +++ b/src/Facades/Tenant.php @@ -10,11 +10,11 @@ class Tenant extends Facade { protected static function getFacadeAccessor() { - return Tenant::class; + return self::class; } public static function create($domains, array $data = []): \Stancl\Tenancy\Tenant { - return Tenant::create($domains, $data); + return self::create($domains, $data); } }