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

Fix code style (php-cs-fixer)

This commit is contained in:
PHP CS Fixer 2023-02-23 14:28:57 +00:00
parent a5695939d2
commit 6873c544ac
2 changed files with 5 additions and 5 deletions

View file

@ -4,12 +4,12 @@ declare(strict_types=1);
namespace Stancl\Tenancy\Features;
use Stancl\Tenancy\Tenancy;
use Illuminate\Support\Facades\Auth;
use Stancl\Tenancy\Contracts\Tenant;
use Illuminate\Http\RedirectResponse;
use Illuminate\Support\Facades\Auth;
use Stancl\Tenancy\Contracts\Feature;
use Stancl\Tenancy\Contracts\Tenant;
use Stancl\Tenancy\Database\Models\ImpersonationToken;
use Stancl\Tenancy\Tenancy;
class UserImpersonation implements Feature
{

View file

@ -4,10 +4,10 @@ declare(strict_types=1);
namespace Stancl\Tenancy\Features;
use Stancl\Tenancy\Vite;
use Stancl\Tenancy\Contracts\Feature;
use Illuminate\Foundation\Application;
use Illuminate\Foundation\Vite as BaseVite;
use Stancl\Tenancy\Contracts\Feature;
use Stancl\Tenancy\Vite;
class ViteBundler implements Feature
{