1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 19:14:03 +00:00

Update TenantUserImpersonationTest.php

This commit is contained in:
Abrar Ahmad 2022-12-13 16:24:05 +05:00
parent 322b84da14
commit ff79b55ada

View file

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