From b4a055315b5e9ae7fcfa09dcb69ecb5b9e658988 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Fri, 27 Sep 2024 22:50:22 +0200 Subject: [PATCH] improve command output --- src/Commands/CreateUserWithRLSPolicies.php | 4 ++-- src/Commands/Install.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Commands/CreateUserWithRLSPolicies.php b/src/Commands/CreateUserWithRLSPolicies.php index 3ad83a86..fd0338b6 100644 --- a/src/Commands/CreateUserWithRLSPolicies.php +++ b/src/Commands/CreateUserWithRLSPolicies.php @@ -142,9 +142,9 @@ class CreateUserWithRLSPolicies extends Command $this->components->bulletList($createdPolicies); - $this->components->info('RLS policies updated successfully.'); + $this->components->success('RLS policies updated successfully.'); } else { - $this->components->info('All RLS policies are up to date.'); + $this->components->success('All RLS policies are up to date.'); } } diff --git a/src/Commands/Install.php b/src/Commands/Install.php index 6a67fa3f..9f6a9c31 100644 --- a/src/Commands/Install.php +++ b/src/Commands/Install.php @@ -52,7 +52,7 @@ class Install extends Command newLineAfter: true, ); - $this->components->info('✨️ Tenancy for Laravel successfully installed.'); + $this->components->success('✨️ Tenancy for Laravel successfully installed.'); if (! $this->option('no-interaction')) { $this->askForSupport();