@@ -16,7 +16,7 @@ |
||
16 | 16 | { |
17 | 17 | $self = $this; |
18 | 18 | |
19 | - $pimple->offsetSet('config', function (Container $container) use ($self) { |
|
19 | + $pimple->offsetSet('config', function(Container $container) use ($self) { |
|
20 | 20 | return $self->createConfig($container); |
21 | 21 | }); |
22 | 22 | } |
@@ -29,7 +29,7 @@ |
||
29 | 29 | { |
30 | 30 | $self = $this; |
31 | 31 | |
32 | - $container->offsetSet('lock_factory', function (Container $container) use ($self) { |
|
32 | + $container->offsetSet('lock_factory', function(Container $container) use ($self) { |
|
33 | 33 | return new LockFactory( |
34 | 34 | $self->createSymfonyLockFactory($container), |
35 | 35 | $self->createLockIdentifierGenerator() |
@@ -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); |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace Jellyfish\Event; |
6 | 6 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace Jellyfish\Event; |
6 | 6 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace Jellyfish\Event; |
6 | 6 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace Jellyfish\Event; |
6 | 6 |