@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | */ |
36 | 36 | public static function configureContainer(LimoncelloContainerInterface $container): void |
37 | 37 | { |
38 | - $container[TemplatesInterface::class] = function (PsrContainerInterface $container): TemplatesInterface { |
|
38 | + $container[TemplatesInterface::class] = function(PsrContainerInterface $container): TemplatesInterface { |
|
39 | 39 | $settings = $container->get(SettingsProviderInterface::class)->get(C::class); |
40 | 40 | $templates = new TwigTemplates( |
41 | 41 | $settings[C::KEY_APP_ROOT_FOLDER], |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | }; |
49 | 49 | |
50 | 50 | $container[TemplatesCacheInterface::class] = |
51 | - function (PsrContainerInterface $container): TemplatesCacheInterface { |
|
51 | + function(PsrContainerInterface $container): TemplatesCacheInterface { |
|
52 | 52 | return $container->get(TemplatesInterface::class); |
53 | 53 | }; |
54 | 54 | } |