Test Setup Failed
Push — master ( 842960...477961 )
by Antonio Carlos
02:04
created
src/Checkers/HealthPanel.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
             foreach ($resources as $url) {
49 49
                 [$healthy, $message] = $this->checkHealthPanel($url);
50 50
 
51
-                if (! $healthy) {
51
+                if (!$healthy) {
52 52
                     return $this->makeResult(false, $message);
53 53
                 }
54 54
             }
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
     {
71 71
         $urls = $this->target->urls;
72 72
 
73
-        if (! is_a($urls, Collection::class)) {
73
+        if (!is_a($urls, Collection::class)) {
74 74
             $urls = collect($urls);
75 75
         }
76 76
 
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
 
111 111
         foreach ($resources as $resource) {
112 112
             foreach ($resource['targets'] as $target) {
113
-                if (! $target['result']['healthy']) {
113
+                if (!$target['result']['healthy']) {
114 114
                     $messages[] = $resource['name'];
115 115
                 }
116 116
             }
Please login to merge, or discard this patch.