From 8776cedaa78f293f11a00d2456c3024cb68ded90 Mon Sep 17 00:00:00 2001 From: Mohamed Alsharaf Date: Thu, 24 Aug 2017 22:50:32 +1200 Subject: [PATCH] Feature: add desktop notification to ws:start --- src/MooCommand/Command/Workspace/Start.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/MooCommand/Command/Workspace/Start.php b/src/MooCommand/Command/Workspace/Start.php index d7d8ffc..feff378 100644 --- a/src/MooCommand/Command/Workspace/Start.php +++ b/src/MooCommand/Command/Workspace/Start.php @@ -58,5 +58,6 @@ protected function fire() // Success message $successMessage = 'The site started successfully.'; $this->getOutputStyle()->success($successMessage); + $this->notify('Start environment ' . $this->getConfigHelper()->getCurrentSiteName(), $successMessage); } }