Completed
Push — master ( 8973c2...8c162c )
by Neomerx
03:34
created
src/Package/TemplatesSettings.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
src/Package/TemplatesContainerConfigurator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Commands/TemplatesCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.