From 1b9f68c9ec92365fde317de3d7820d8a416d71ca Mon Sep 17 00:00:00 2001 From: slawkens Date: Mon, 25 Aug 2025 10:58:54 +0200 Subject: [PATCH] Update PluginUninstallCommand.php --- system/src/Commands/PluginUninstallCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/src/Commands/PluginUninstallCommand.php b/system/src/Commands/PluginUninstallCommand.php index f1a14138..a5cc00f5 100644 --- a/system/src/Commands/PluginUninstallCommand.php +++ b/system/src/Commands/PluginUninstallCommand.php @@ -34,7 +34,7 @@ class PluginUninstallCommand extends Command $io->warning($warning); } - $io->success($pluginName . ' plugin has been successfully installed.'); + $io->success('Successfully uninstalled plugin ' . $pluginName); return Command::SUCCESS; } }