1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-15 11:24:04 +00:00

Fix code style (php-cs-fixer)

This commit is contained in:
PHP CS Fixer 2022-08-23 12:46:00 +00:00
parent 2594b1960f
commit 63386a1ef0
5 changed files with 18 additions and 13 deletions

View file

@ -1,13 +1,14 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy;
use Closure;
use Illuminate\Support\Collection;
use Stancl\Tenancy\Concerns\DealsWithTenantSymlinks;
use Stancl\Tenancy\Database\Models\Tenant;
use Stancl\Tenancy\Events\StorageSymlinkRemoved;
use Stancl\Tenancy\Events\RemovingStorageSymlink;
use Stancl\Tenancy\Events\StorageSymlinkRemoved;
class RemoveStorageSymlinksAction
{
@ -19,7 +20,7 @@ class RemoveStorageSymlinksAction
/** @var Tenant $tenant */
foreach ($tenants as $tenant) {
foreach(static::possibleTenantSymlinks($tenant) as $publicPath => $storagePath) {
foreach (static::possibleTenantSymlinks($tenant) as $publicPath => $storagePath) {
static::removeLink($publicPath, $tenant, $afterLinkRemoval);
}
}