Completed
Branch master (d347c3)
by Jakub
04:37
created
Category
src/HttpKernel/TestKernel.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,10 +43,10 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/HttpKernel/KernelConfiguration.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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(),
Please login to merge, or discard this patch.