@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | public static function configureContainer(LimoncelloContainerInterface $container): void |
39 | 39 | { |
40 | 40 | $container[CookieJarInterface::class] = |
41 | - function (PsrContainerInterface $container): CookieJarInterface { |
|
41 | + function(PsrContainerInterface $container): CookieJarInterface { |
|
42 | 42 | $settings = $container->get(SettingsProviderInterface::class)->get(CookieSettings::class); |
43 | 43 | |
44 | 44 | return new CookieJar( |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | }; |
52 | 52 | |
53 | 53 | $container[CookieFunctionsInterface::class] = |
54 | - function (PsrContainerInterface $container): CookieFunctionsInterface { |
|
54 | + function(PsrContainerInterface $container): CookieFunctionsInterface { |
|
55 | 55 | return new CookieFunctions(); |
56 | 56 | }; |
57 | 57 | } |