From 86883090a8321a2ca4493e989df61bd45812996d Mon Sep 17 00:00:00 2001 From: James Brooks Date: Mon, 8 Aug 2016 08:39:20 +0100 Subject: [PATCH] Use the info method, success doesn't exist --- app/Subscribers/CommandSubscriber.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Subscribers/CommandSubscriber.php b/app/Subscribers/CommandSubscriber.php index b648aed8..7b7acb6f 100644 --- a/app/Subscribers/CommandSubscriber.php +++ b/app/Subscribers/CommandSubscriber.php @@ -84,7 +84,7 @@ class CommandSubscriber event(new SystemWasInstalledEvent()); - $command->success('System was installed!'); + $command->info('System was installed!'); } /** @@ -100,7 +100,7 @@ class CommandSubscriber event(new SystemWasUpdatedEvent()); - $command->success('System was updated!'); + $command->info('System was updated!'); } /** @@ -116,7 +116,7 @@ class CommandSubscriber event(new SystemWasResetEvent()); - $command->success('System was reset!'); + $command->info('System was reset!'); } /**