Completed
Push — develop ( 3d2ac1...0e6c87 )
by
unknown
13:24
created
module/Settings/config/module.config.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
         'translation_file_patterns' => [
38 38
             [
39 39
                 'type' => 'gettext',
40
-                'base_dir' => __DIR__ . '/../language',
40
+                'base_dir' => __DIR__.'/../language',
41 41
                 'pattern' => '%s.mo',
42 42
             ],
43 43
         ],
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
         
100 100
         // Where to look for view templates not mapped above
101 101
         'template_path_stack' => [
102
-            __DIR__ . '/../view',
102
+            __DIR__.'/../view',
103 103
         ],
104 104
         ],
105 105
     
Please login to merge, or discard this patch.
module/Settings/src/Settings/Form/Factory/SettingsFieldsetFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
         return new $requestedName($container);
36 36
     }
37 37
     
38
-    public function createService(ServiceLocatorInterface $serviceLocator, $name=null, $requestedName=SettingsFieldset::class)
38
+    public function createService(ServiceLocatorInterface $serviceLocator, $name = null, $requestedName = SettingsFieldset::class)
39 39
     {
40 40
         return $this($serviceLocator, $requestedName);
41 41
     }
Please login to merge, or discard this patch.