@@ -43,7 +43,7 @@ |
||
| 43 | 43 | { |
| 44 | 44 | assert(is_dir($templatesFolder) === true); |
| 45 | 45 | |
| 46 | - return iterator_to_array(call_user_func(function () use ($templatesFolder) { |
|
| 46 | + return iterator_to_array(call_user_func(function() use ($templatesFolder) { |
|
| 47 | 47 | $globIterator = new GlobIterator( |
| 48 | 48 | $templatesFolder . DIRECTORY_SEPARATOR . '*.html.twig', |
| 49 | 49 | GlobIterator::SKIP_DOTS | GlobIterator::CURRENT_AS_FILEINFO |
@@ -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); |