Test Setup Failed
Push — fix/monitor-checks ( a49436 )
by Ben
09:13 queued 23s
created
src/System/HealthMonitor/Monitor.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,14 +28,14 @@
 block discarded – undo
28 28
 
29 29
             $notifiers = $checkInstance->notifiers();
30 30
 
31
-            if (! $checkResult = $checkInstance->check()) {
31
+            if (!$checkResult = $checkInstance->check()) {
32 32
                 foreach ($notifiers as $notifier) {
33 33
                     app($notifier)->onFailure($checkInstance);
34 34
                 }
35 35
 
36
-                if( false === $checkResult) break;
36
+                if (false === $checkResult) break;
37 37
 
38
-            } else {
38
+            }else {
39 39
                 foreach ($notifiers as $notifier) {
40 40
                     app($notifier)->onSuccess($checkInstance);
41 41
                 }
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,9 @@
 block discarded – undo
33 33
                     app($notifier)->onFailure($checkInstance);
34 34
                 }
35 35
 
36
-                if( false === $checkResult) break;
36
+                if( false === $checkResult) {
37
+                    break;
38
+                }
37 39
 
38 40
             } else {
39 41
                 foreach ($notifiers as $notifier) {
Please login to merge, or discard this patch.