@@ -52,7 +52,7 @@ |
||
| 52 | 52 | $lazySubscriber = $this->lazyServiceFactory->getLazyServiceDefinition( |
| 53 | 53 | $className, |
| 54 | 54 | // encapsulate the whole Pimple service definition |
| 55 | - static function () use ($container, $serviceName) { |
|
| 55 | + static function() use ($container, $serviceName) { |
|
| 56 | 56 | return call_user_func($container->raw($serviceName), $container); |
| 57 | 57 | } |
| 58 | 58 | ); |
@@ -33,7 +33,7 @@ |
||
| 33 | 33 | return $this->lazyLoadingFactory->createProxy( |
| 34 | 34 | $className, |
| 35 | 35 | // this fancy method signature is required by lazy loading factory |
| 36 | - static function (&$wrappedObject, $proxy, $method, $parameters, &$initializer) use ($className, $definition) { |
|
| 36 | + static function(&$wrappedObject, $proxy, $method, $parameters, &$initializer) use ($className, $definition) { |
|
| 37 | 37 | $wrappedObject = $definition(); |
| 38 | 38 | $initializer = null; |
| 39 | 39 | |