Test Failed
Push — master ( ec8ff1...24c3c9 )
by Vladimir
05:33
created
src/Command/CheckInfoCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
         foreach ($checks as $check) {
98 98
             $tags = $check->getTags();
99 99
             if ($tags) {
100
-                $tags = implode(', ',$check->getTags());
100
+                $tags = implode(', ', $check->getTags());
101 101
                 $tags = "[$tags]";
102 102
             } else {
103 103
                 $tags = null;
Please login to merge, or discard this patch.
src/Check/Manager.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
         if ($groups) {
87 87
             $groups = \is_string($groups) ? [$groups] : $groups;
88 88
 
89
-            return array_filter($this->groups, function ($t) use ($groups) {
89
+            return array_filter($this->groups, function($t) use ($groups) {
90 90
                 return \in_array($t->getName(), $groups);
91 91
             });
92 92
         }
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
     {
123 123
         foreach ($checkServiceMap as $checkId => $check) {
124 124
             $checkServiceId = $check['serviceId'];
125
-            $checkProxy = new Proxy(function () use ($checkServiceId, $checkId) {
125
+            $checkProxy = new Proxy(function() use ($checkServiceId, $checkId) {
126 126
                 $this->checks[$checkId] = $this->container->get($checkServiceId);
127 127
 
128 128
                 return $this->checks[$checkId];
Please login to merge, or discard this patch.