Completed
Push — master ( 4c3194...70467d )
by Bret R.
02:09 queued 55s
created
src/StatusCheckerGroup.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
      */
49 49
     public function check(): void
50 50
     {
51
-        foreach($this->checks as $checker) {
51
+        foreach ($this->checks as $checker) {
52 52
             $this->results[] = $checker->checkStatus();
53 53
         }
54 54
     }
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
     public function hasErrors(): bool
72 72
     {
73 73
         $error = false;
74
-        foreach($this->results as $result) {
74
+        foreach ($this->results as $result) {
75 75
             if (!$result->getSuccess()) {
76 76
                 $error = true;
77 77
                 break;
Please login to merge, or discard this patch.