Test Setup Failed
Push — master ( 63a09d...c362ce )
by Dawid
01:42
created
src/Factory/LazyServiceFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
         return $this->lazyLoadingFactory->createProxy(
34 34
             $className,
35 35
             // this fancy method signature is required by lazy loading factory
36
-            function (&$wrappedObject, $proxy, $method, $parameters, &$initializer) use ($className, $definition) {
36
+            function(&$wrappedObject, $proxy, $method, $parameters, &$initializer) use ($className, $definition) {
37 37
                 $wrappedObject = call_user_func($definition);
38 38
                 $initializer = null;
39 39
 
Please login to merge, or discard this patch.
src/DependencyInjection/LazyEventSubscriberServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
             $lazySubscriber = $this->lazyServiceFactory->getLazyServiceDefinition(
53 53
                 $className,
54 54
                 // encapsulate the whole Pimple service definition
55
-                function () use ($container, $serviceName) {
55
+                function() use ($container, $serviceName) {
56 56
                     return call_user_func($container->raw($serviceName), $container);
57 57
                 }
58 58
             );
Please login to merge, or discard this patch.