@@ -62,7 +62,7 @@ |
||
62 | 62 | } |
63 | 63 | $this->ops = array_filter( |
64 | 64 | array_merge(static::defaultOps(), $ops), |
65 | - function ($key) { |
|
65 | + function($key) { |
|
66 | 66 | if (!array_key_exists($key, static::defaultOps())) { |
67 | 67 | throw new InvalidFactoryOptionException( |
68 | 68 | sprintf('%s is not a valid option for the factory %s', $key, \get_class($this)) |
@@ -240,7 +240,7 @@ discard block |
||
240 | 240 | return array_unique( |
241 | 241 | array_filter( |
242 | 242 | array_map( |
243 | - function ($content) { |
|
243 | + function($content) { |
|
244 | 244 | if ($content instanceof ComponentGroup) { |
245 | 245 | return $content->getParent(); |
246 | 246 | } |
@@ -259,7 +259,7 @@ discard block |
||
259 | 259 | return array_unique( |
260 | 260 | array_filter( |
261 | 261 | array_map( |
262 | - function (ComponentLocation $loc) { |
|
262 | + function(ComponentLocation $loc) { |
|
263 | 263 | return $loc->getContent(); |
264 | 264 | }, |
265 | 265 | $this->locations->toArray() |
@@ -18,7 +18,7 @@ |
||
18 | 18 | use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator; |
19 | 19 | use Symfony\Component\DependencyInjection\Reference; |
20 | 20 | |
21 | -return function (ContainerConfigurator $configurator) { |
|
21 | +return function(ContainerConfigurator $configurator) { |
|
22 | 22 | $services = $configurator->services(); |
23 | 23 | |
24 | 24 | $services |