Completed
Push — master ( 8973c2...8c162c )
by Neomerx
03:34
created
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.