Completed
Push — master ( c6aa78...371b23 )
by Ma
02:28
created
src/Monitor/Notification/Notifier.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@
 block discarded – undo
82 82
     {
83 83
         $notificationId = $trigger->getNotificationId();
84 84
         $notification = $this->getNotificationById($notificationId);
85
-        if (! $notification) {
85
+        if (!$notification) {
86 86
             throw new \Exception('Notification not found');
87 87
         }
88 88
         //merge server data and trigger properties so we can use them in fulfilling notification message
Please login to merge, or discard this patch.
src/Monitor/Service/NotificationLog.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@
 block discarded – undo
96 96
             );
97 97
         $query = $queryBuilder->getQuery();
98 98
         $queryResult = $query->getResult();
99
-        if (! $queryResult) {
99
+        if (!$queryResult) {
100 100
             return true;
101 101
         }
102 102
         $timeOfLastFiredUpTrigger = $queryResult[0]['created'];
Please login to merge, or discard this patch.