@@ -43,10 +43,10 @@ |
||
| 43 | 43 | |
| 44 | 44 | public function registerContainerConfiguration(LoaderInterface $loader) |
| 45 | 45 | { |
| 46 | - $loader->load(function (ContainerBuilder $container) { |
|
| 46 | + $loader->load(function(ContainerBuilder $container) { |
|
| 47 | 47 | $this->loadExtensionConfigurations($container); |
| 48 | 48 | }); |
| 49 | - $loader->load(function (ContainerBuilder $container) { |
|
| 49 | + $loader->load(function(ContainerBuilder $container) { |
|
| 50 | 50 | $this->makeServicesPublic($container); |
| 51 | 51 | }); |
| 52 | 52 | } |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | */ |
| 80 | 80 | public function withBundles(array $bundles): self |
| 81 | 81 | { |
| 82 | - return \array_reduce($bundles, function (self $config, BundleInterface $bundle) { |
|
| 82 | + return \array_reduce($bundles, function(self $config, BundleInterface $bundle) { |
|
| 83 | 83 | return $config->withBundle($bundle); |
| 84 | 84 | }, $this); |
| 85 | 85 | } |
@@ -116,7 +116,7 @@ discard block |
||
| 116 | 116 | */ |
| 117 | 117 | public function withPublicServiceIds(array $serviceIds): self |
| 118 | 118 | { |
| 119 | - return \array_reduce($serviceIds, function (self $config, string $serviceId) { |
|
| 119 | + return \array_reduce($serviceIds, function(self $config, string $serviceId) { |
|
| 120 | 120 | return $config->withPublicServiceId($serviceId); |
| 121 | 121 | }, $this); |
| 122 | 122 | } |
@@ -131,7 +131,7 @@ discard block |
||
| 131 | 131 | return \sha1(\serialize([ |
| 132 | 132 | $this->getEnvironment(), |
| 133 | 133 | $this->isDebug(), |
| 134 | - \array_map(function (BundleInterface $bundle) { |
|
| 134 | + \array_map(function(BundleInterface $bundle) { |
|
| 135 | 135 | return \get_class($bundle); |
| 136 | 136 | }, $this->getBundles()), |
| 137 | 137 | $this->getAllBundleConfigurations(), |