@@ -24,7 +24,7 @@ |
||
| 24 | 24 | */ |
| 25 | 25 | protected function createFinderFactory(Container $container): ServiceProviderInterface |
| 26 | 26 | { |
| 27 | - $container->offsetSet('finder_factory', function () { |
|
| 27 | + $container->offsetSet('finder_factory', function() { |
|
| 28 | 28 | return new FinderFactory(); |
| 29 | 29 | }); |
| 30 | 30 | |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | { |
| 42 | 42 | $self = $this; |
| 43 | 43 | |
| 44 | - $container->extend('commands', function (array $commands, Container $container) use ($self) { |
|
| 44 | + $container->extend('commands', function(array $commands, Container $container) use ($self) { |
|
| 45 | 45 | $commands[] = new TransferGenerateCommand( |
| 46 | 46 | $self->createTransferGenerator($container), |
| 47 | 47 | $self->createTransferCleaner($container), |
@@ -189,7 +189,7 @@ discard block |
||
| 189 | 189 | } |
| 190 | 190 | |
| 191 | 191 | foreach ($factoryRegistry as $factoryId => $factory) { |
| 192 | - $container->offsetSet($factoryId, function () use ($factory) { |
|
| 192 | + $container->offsetSet($factoryId, function() use ($factory) { |
|
| 193 | 193 | return $factory; |
| 194 | 194 | }); |
| 195 | 195 | } |
@@ -25,7 +25,7 @@ |
||
| 25 | 25 | */ |
| 26 | 26 | protected function addFilesystem(Container $container): FilesystemSymfonyServiceProvider |
| 27 | 27 | { |
| 28 | - $container->offsetSet('filesystem', function () { |
|
| 28 | + $container->offsetSet('filesystem', function() { |
|
| 29 | 29 | $symfonyFilesystem = new SymfonyFilesystem(); |
| 30 | 30 | |
| 31 | 31 | return new Filesystem($symfonyFilesystem); |