@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | if ($groups) { |
60 | 60 | $groups = \is_string($groups) ? [$groups] : $groups; |
61 | 61 | |
62 | - return array_filter($this->groups, function ($t) use ($groups) { |
|
62 | + return array_filter($this->groups, function($t) use ($groups) { |
|
63 | 63 | return \in_array($t->getName(), $groups); |
64 | 64 | }); |
65 | 65 | } |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | if ($tags) { |
88 | 88 | $tags = \is_string($tags) ? [$tags] : $tags; |
89 | 89 | |
90 | - return array_filter($this->tags, function ($t) use ($tags) { |
|
90 | + return array_filter($this->tags, function($t) use ($tags) { |
|
91 | 91 | return \in_array($t->getName(), $tags); |
92 | 92 | }); |
93 | 93 | } |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | { |
114 | 114 | foreach ($checkServiceMap as $checkId => $check) { |
115 | 115 | $checkServiceId = $check['serviceId']; |
116 | - $checkProxy = new Proxy(function () use ($checkServiceId, $checkId) { |
|
116 | + $checkProxy = new Proxy(function() use ($checkServiceId, $checkId) { |
|
117 | 117 | $this->checks[$checkId] = $this->container->get($checkServiceId); |
118 | 118 | |
119 | 119 | return $this->checks[$checkId]; |