From 750fa975e1e1bb42fe760d3d47baa9edaab91511 Mon Sep 17 00:00:00 2001 From: Abrar Ahmad Date: Wed, 14 Dec 2022 15:51:42 +0500 Subject: [PATCH] Update src/Commands/ClearPendingTenants.php Co-authored-by: lukinovec --- src/Commands/ClearPendingTenants.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Commands/ClearPendingTenants.php b/src/Commands/ClearPendingTenants.php index a2801578..0e27a209 100644 --- a/src/Commands/ClearPendingTenants.php +++ b/src/Commands/ClearPendingTenants.php @@ -27,8 +27,7 @@ class ClearPendingTenants extends Command $olderThanHours = (int) $this->option('older-than-hours'); if ($olderThanDays && $olderThanHours) { - $this->components->error("Cannot use '--older-than-days' and '--older-than-hours' together"); - $this->components->error('Please, choose only one of these options.'); + $this->components->error("Cannot use '--older-than-days' and '--older-than-hours' together. Please, choose only one of these options."); return 1; // Exit code for failure }