Completed
Push — develop ( a60aa3...22a4dc )
by Siad
10:10
created
config/module.config.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 return [
24 24
     'view_helpers' => [
25 25
         'factories' => [
26
-            'FeatureToggle' => function ($viewhelper) {
26
+            'FeatureToggle' => function($viewhelper) {
27 27
                 $serviceLocator = $viewhelper->getServiceLocator();
28 28
                 $toggleManager = $serviceLocator->get('ToggleManagerFactory');
29 29
                 $toggleContext = $serviceLocator->get('ToggleContextFactory');
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
     ],
39 39
     'controller_plugins' => [
40 40
         'factories' => [
41
-            'FeatureToggle' => function ($controllerPlugin) {
41
+            'FeatureToggle' => function($controllerPlugin) {
42 42
                 $serviceLocator = $controllerPlugin->getServiceLocator();
43 43
                 $toggleManager = $serviceLocator->get('ToggleManagerFactory');
44 44
                 $toggleContext = $serviceLocator->get('ToggleContextFactory');
Please login to merge, or discard this patch.
Module.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
         return [
77 77
             'Zend\Loader\StandardAutoloader' => [
78 78
                 'namespaces' => [
79
-                    __NAMESPACE__ => __DIR__ . '/src/',
79
+                    __NAMESPACE__ => __DIR__.'/src/',
80 80
                 ]
81 81
             ]
82 82
         ];
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
      */
90 90
     public function getConfig()
91 91
     {
92
-        return include __DIR__ . '/config/module.config.php';
92
+        return include __DIR__.'/config/module.config.php';
93 93
     }
94 94
 
95 95
     /**
Please login to merge, or discard this patch.