From ddf0a40b5377b3d24d83e91a5b8640e624c1fa60 Mon Sep 17 00:00:00 2001 From: Pete Cooper Date: Thu, 1 Oct 2020 17:37:05 +0100 Subject: [PATCH] formatting --- src/Commands/TenantList.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() ?? []) : '') ); }); }