From 59fa667afa3fa38882b251864194049d1dfefdd2 Mon Sep 17 00:00:00 2001 From: Cachet Bot Date: Sun, 19 Jul 2020 21:59:28 +0000 Subject: [PATCH] Apply fixes from StyleCI --- app/Presenters/IncidentUpdatePresenter.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/Presenters/IncidentUpdatePresenter.php b/app/Presenters/IncidentUpdatePresenter.php index 5e1d3502..abbcbbc8 100644 --- a/app/Presenters/IncidentUpdatePresenter.php +++ b/app/Presenters/IncidentUpdatePresenter.php @@ -123,14 +123,19 @@ class IncidentUpdatePresenter extends BasePresenter implements Arrayable { switch ($this->wrappedObject->status) { case 1: // Investigating + return 'icon ion-flag oranges'; case 2: // Identified + return 'icon ion-alert yellows'; case 3: // Watching + return 'icon ion-eye blues'; case 4: // Fixed + return 'icon ion-checkmark greens'; default: // Something actually broke, this shouldn't happen. + return ''; } }