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

Fix code style (php-cs-fixer)

This commit is contained in:
PHP CS Fixer 2023-06-07 13:01:53 +00:00
parent ac00f03273
commit f0faf41522

View file

@ -1,14 +1,15 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Database\Concerns;
use Closure;
use Illuminate\Support\Collection;
use Symfony\Component\Finder\Finder;
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Schema;
use Symfony\Component\Finder\Finder;
use Symfony\Component\Finder\SplFileInfo;
use Stancl\Tenancy\Database\Concerns\BelongsToPrimaryModel;
trait DealsWithModels
{