From 1efbbcd02f75c5c30757a5e958eab9bf0257e20a Mon Sep 17 00:00:00 2001 From: lukinovec Date: Mon, 28 Nov 2022 15:15:34 +0100 Subject: [PATCH] Improve CreatePendingTenants success message --- src/Commands/CreatePendingTenants.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Commands/CreatePendingTenants.php b/src/Commands/CreatePendingTenants.php index 9b38b71f..5c255664 100644 --- a/src/Commands/CreatePendingTenants.php +++ b/src/Commands/CreatePendingTenants.php @@ -30,8 +30,8 @@ class CreatePendingTenants extends Command $createdCount++; } - $this->info($createdCount . ' ' . str('tenant')->plural($createdCount) . ' created.'); - $this->info($maxPendingTenantCount . ' ' . str('tenant')->plural($maxPendingTenantCount) . ' ready to be used.'); + $this->info($createdCount . ' pending ' . str('tenant')->plural($createdCount) . ' created.'); + $this->info($maxPendingTenantCount . ' pending ' . str('tenant')->plural($maxPendingTenantCount) . ' ready to be used.'); return 0; }