@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | $attributes = $attributes[0]; |
25 | 25 | if (!isset($attributes['alias'])) { |
26 | 26 | throw new InvalidArgumentException(sprintf( |
27 | - $this->context . ' "%s" has no "alias" attribute in its tag', |
|
27 | + $this->context.' "%s" has no "alias" attribute in its tag', |
|
28 | 28 | $serviceId |
29 | 29 | )); |
30 | 30 | } |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | )); |
42 | 42 | } |
43 | 43 | |
44 | - $agents = array_filter($agents, function ($key) use ($enabledAgents) { |
|
44 | + $agents = array_filter($agents, function($key) use ($enabledAgents) { |
|
45 | 45 | return in_array($key, $enabledAgents); |
46 | 46 | }, ARRAY_FILTER_USE_KEY); |
47 | 47 |