@@ -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 | ]); |
@@ -31,7 +31,7 @@ |
||
31 | 31 | { |
32 | 32 | $self = $this; |
33 | 33 | |
34 | - $container->offsetSet('logger', function (Container $container) use ($self) { |
|
34 | + $container->offsetSet('logger', function(Container $container) use ($self) { |
|
35 | 35 | $logger = new Logger('jellyfish'); |
36 | 36 | |
37 | 37 | $logger->pushHandler($self->createStreamHandler($container)); |
@@ -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() |
@@ -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 |
@@ -25,7 +25,7 @@ |
||
25 | 25 | */ |
26 | 26 | protected function registerPropertyNameConverterStrategyProvider(Container $container): SerializerServiceProvider |
27 | 27 | { |
28 | - $container->offsetSet('serializer_property_name_converter_strategy_provider', function () { |
|
28 | + $container->offsetSet('serializer_property_name_converter_strategy_provider', function() { |
|
29 | 29 | return new PropertyNameConverterStrategyProvider(); |
30 | 30 | }); |
31 | 31 |