diff --git a/src/Commands/TenantList.php b/src/Commands/TenantList.php index 0cda8b6e..7c7248b5 100644 --- a/src/Commands/TenantList.php +++ b/src/Commands/TenantList.php @@ -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() ?? []) : '') ); }); }