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'; -}