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

formatting

This commit is contained in:
Pete Cooper 2020-10-01 17:37:05 +01:00 committed by GitHub
parent 9978fefa77
commit ddf0a40b53
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -37,7 +37,7 @@ class TenantList extends Command
->each(function (Tenant $tenant) {
$this->line(
"[Tenant] id: {$tenant['id']}" .
($tenant->domains ? " @ " . implode('; ', $tenant->domains->pluck('domain')->toArray() ?? []) : "")
($tenant->domains ? ' @ ' . implode('; ', $tenant->domains->pluck('domain')->toArray() ?? []) : '')
);
});
}