@@ -4,7 +4,7 @@ |
||
4 | 4 | use Symfony\Component\Debug\Debug; |
5 | 5 | use Symfony\Component\HttpFoundation\Request; |
6 | 6 | |
7 | -require __DIR__ . '/../../vendor/autoload.php'; |
|
7 | +require __DIR__.'/../../vendor/autoload.php'; |
|
8 | 8 | |
9 | 9 | Debug::enable(); |
10 | 10 | require_once __DIR__.'/../app/AppKernel.php'; |
@@ -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 |