@@ -24,7 +24,7 @@ |
||
| 24 | 24 | */ |
| 25 | 25 | protected function createProcessFactory(Container $container): ProcessSymfonyServiceProvider |
| 26 | 26 | { |
| 27 | - $container->offsetSet('process_factory', function (Container $container) { |
|
| 27 | + $container->offsetSet('process_factory', function(Container $container) { |
|
| 28 | 28 | $rootDir = $container->offsetGet('root_dir'); |
| 29 | 29 | |
| 30 | 30 | return new ProcessFactory($rootDir . 'tmp' . DIRECTORY_SEPARATOR); |
@@ -69,7 +69,7 @@ |
||
| 69 | 69 | 'root_dir' => $this->rootDir, |
| 70 | 70 | 'app_dir' => $this->appDir, |
| 71 | 71 | 'environment' => $this->environment, |
| 72 | - 'commands' => function () { |
|
| 72 | + 'commands' => function() { |
|
| 73 | 73 | return []; |
| 74 | 74 | } |
| 75 | 75 | ]); |
@@ -24,7 +24,7 @@ |
||
| 24 | 24 | */ |
| 25 | 25 | protected function createValidatorFactory(Container $container): ServiceProviderInterface |
| 26 | 26 | { |
| 27 | - $container->offsetSet('json_schema_validator_factory', function () { |
|
| 27 | + $container->offsetSet('json_schema_validator_factory', function() { |
|
| 28 | 28 | return new ValidatorFactory(); |
| 29 | 29 | }); |
| 30 | 30 | |