From ff79b55ada0888651a08e22cd9361e7a568f6d23 Mon Sep 17 00:00:00 2001 From: Abrar Ahmad Date: Tue, 13 Dec 2022 16:24:05 +0500 Subject: [PATCH] Update TenantUserImpersonationTest.php --- tests/TenantUserImpersonationTest.php | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/tests/TenantUserImpersonationTest.php b/tests/TenantUserImpersonationTest.php index 27d687f2..7dd12f36 100644 --- a/tests/TenantUserImpersonationTest.php +++ b/tests/TenantUserImpersonationTest.php @@ -4,9 +4,6 @@ declare(strict_types=1); use Carbon\Carbon; use Carbon\CarbonInterval; -use Illuminate\Database\Schema\Blueprint; -use Illuminate\Support\Facades\Hash; -use Illuminate\Support\Facades\Schema; use Illuminate\Support\Str; use Illuminate\Auth\TokenGuard; use Illuminate\Auth\SessionGuard; @@ -336,11 +333,3 @@ class AnotherImpersonationUser extends Authenticable protected $table = 'users'; } - -class Admin extends Authenticable -{ - protected $guarded = []; - public $timestamps = false; - - protected $table = 'users'; -}