@@ -34,7 +34,7 @@  | 
                                                    ||
| 34 | 34 | */  | 
                                                        
| 35 | 35 | public static function configureContainer(LimoncelloContainerInterface $container): void  | 
                                                        
| 36 | 36 |      { | 
                                                        
| 37 | -        $container[TemplatesInterface::class] = function (PsrContainerInterface $container) { | 
                                                        |
| 37 | +        $container[TemplatesInterface::class] = function(PsrContainerInterface $container) { | 
                                                        |
| 38 | 38 | $settings = $container->get(SettingsProviderInterface::class)->get(C::class);  | 
                                                        
| 39 | 39 | $templates = new TwigTemplates($settings[C::KEY_TEMPLATES_FOLDER], $settings[C::KEY_CACHE_FOLDER]);  | 
                                                        
| 40 | 40 | |
@@ -94,7 +94,7 @@  | 
                                                    ||
| 94 | 94 | */  | 
                                                        
| 95 | 95 | public static function execute(ContainerInterface $container, IoInterface $inOut): void  | 
                                                        
| 96 | 96 |      { | 
                                                        
| 97 | - $action = $inOut->getArgument(static::ARG_ACTION);  | 
                                                        |
| 97 | + $action = $inOut->getArgument(static::ARG_ACTION);  | 
                                                        |
| 98 | 98 |          switch ($action) { | 
                                                        
| 99 | 99 | case static::ACTION_CREATE_CACHE:  | 
                                                        
| 100 | 100 | (new self())->executeCache($container);  |