Completed
Push — master ( bf89f2...e0b813 )
by Neomerx
01:25
created
src/Package/TwigTemplatesContainerConfigurator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.