@@ -97,7 +97,7 @@ |
||
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; |
@@ -86,7 +86,7 @@ discard block |
||
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 |
||
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]; |