Completed
Push — master ( fd856b...cb3af0 )
by Olivier
13s
created
lib/ContainerProxy.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -195,6 +195,6 @@
 block discarded – undo
195 195
 	{
196 196
 		$dumper = new PhpDumper($container);
197 197
 
198
-		file_put_contents($pathname, $dumper->dump([ 'class' => $class ]));
198
+		file_put_contents($pathname, $dumper->dump(['class' => $class]));
199 199
 	}
200 200
 }
Please login to merge, or discard this patch.
config/container.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
 	ContainerConfig::USE_CACHING => false,
17 17
 	ContainerConfig::EXTENSIONS => [
18 18
 
19
-		[ Extension\ApplicationExtension::class, 'from' ]
19
+		[Extension\ApplicationExtension::class, 'from']
20 20
 
21 21
 	]
22 22
 
Please login to merge, or discard this patch.
lib/Extension/ApplicationExtension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -92,8 +92,8 @@
 block discarded – undo
92 92
 			}
93 93
 
94 94
 			$definition = (new Definition('ICanBoogie\Dummy' . uniqid()))
95
-				->setFactory([ new Reference(Application::class), '__get' ])
96
-				->setArguments([ $id ])
95
+				->setFactory([new Reference(Application::class), '__get'])
96
+				->setArguments([$id])
97 97
 				->setPublic(true);
98 98
 
99 99
 			$container->setDefinition($id, $definition);
Please login to merge, or discard this patch.