Test Failed
Push — zf3-version ( b5b4e1...3457ba )
by Diego
04:58
created
module/Application/src/Controller/IndexController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 class IndexController extends AbstractActionController
14 14
 {
15 15
     /**
16
-     * @return mixed
16
+     * @return ViewModel
17 17
      */
18 18
     public function indexAction()
19 19
     {
Please login to merge, or discard this patch.
config/application.config.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
  */
8 8
 return [
9 9
     // Retrieve list of modules used in this application.
10
-    'modules' => require __DIR__ . '/modules.config.php',
10
+    'modules' => require __DIR__.'/modules.config.php',
11 11
 
12 12
     // These are various options for the listeners attached to the ModuleManager
13 13
     'module_listener_options' => [
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
         // modules are loaded. These effectively override configuration
25 25
         // provided by modules themselves. Paths may use GLOB_BRACE notation.
26 26
         'config_glob_paths' => [
27
-            realpath(__DIR__) . '/autoload/{{,*.}global,{,*.}local}.php',
27
+            realpath(__DIR__).'/autoload/{{,*.}global,{,*.}local}.php',
28 28
         ],
29 29
 
30 30
         // Whether or not to enable a configuration cache.
Please login to merge, or discard this patch.
config/development.config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
     ],
12 12
     // Configuration overrides during development mode
13 13
     'module_listener_options' => [
14
-        'config_glob_paths' => [realpath(__DIR__) . '/autoload/{,*.}{global,local}-development.php'],
14
+        'config_glob_paths' => [realpath(__DIR__).'/autoload/{,*.}{global,local}-development.php'],
15 15
         'config_cache_enabled' => false,
16 16
         'module_map_cache_enabled' => false,
17 17
     ],
Please login to merge, or discard this patch.
module/Application/src/Module.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,6 +13,6 @@
 block discarded – undo
13 13
 
14 14
     public function getConfig()
15 15
     {
16
-        return include __DIR__ . '/../config/module.config.php';
16
+        return include __DIR__.'/../config/module.config.php';
17 17
     }
18 18
 }
Please login to merge, or discard this patch.
module/Application/config/module.config.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -50,13 +50,13 @@
 block discarded – undo
50 50
         'not_found_template'       => 'error/404',
51 51
         'exception_template'       => 'error/index',
52 52
         'template_map' => [
53
-            'layout/layout'           => __DIR__ . '/../view/layout/layout.phtml',
54
-            'application/index/index' => __DIR__ . '/../view/application/index/index.phtml',
55
-            'error/404'               => __DIR__ . '/../view/error/404.phtml',
56
-            'error/index'             => __DIR__ . '/../view/error/index.phtml',
53
+            'layout/layout'           => __DIR__.'/../view/layout/layout.phtml',
54
+            'application/index/index' => __DIR__.'/../view/application/index/index.phtml',
55
+            'error/404'               => __DIR__.'/../view/error/404.phtml',
56
+            'error/index'             => __DIR__.'/../view/error/index.phtml',
57 57
         ],
58 58
         'template_path_stack' => [
59
-            __DIR__ . '/../view',
59
+            __DIR__.'/../view',
60 60
         ],
61 61
     ],
62 62
 ];
Please login to merge, or discard this patch.
module/Application/test/Controller/IndexControllerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
         $configOverrides = [];
23 23
 
24 24
         $this->setApplicationConfig(ArrayUtils::merge(
25
-            include __DIR__ . '/../../../../config/application.config.php',
25
+            include __DIR__.'/../../../../config/application.config.php',
26 26
             $configOverrides
27 27
         ));
28 28
 
Please login to merge, or discard this patch.
module/Api/src/Module.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,6 +13,6 @@
 block discarded – undo
13 13
 
14 14
     public function getConfig()
15 15
     {
16
-        return include __DIR__ . '/../config/module.config.php';
16
+        return include __DIR__.'/../config/module.config.php';
17 17
     }
18 18
 }
Please login to merge, or discard this patch.
module/Api/test/Controller/DistributionReportControllerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
         $configOverrides = [];
23 23
 
24 24
         $this->setApplicationConfig(ArrayUtils::merge(
25
-            include __DIR__ . '/../../../../config/application.config.php',
25
+            include __DIR__.'/../../../../config/application.config.php',
26 26
             $configOverrides
27 27
         ));
28 28
 
Please login to merge, or discard this patch.
module/Api/test/Controller/EvolutionReportControllerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
         $configOverrides = [];
23 23
 
24 24
         $this->setApplicationConfig(ArrayUtils::merge(
25
-            include __DIR__ . '/../../../../config/application.config.php',
25
+            include __DIR__.'/../../../../config/application.config.php',
26 26
             $configOverrides
27 27
         ));
28 28
 
Please login to merge, or discard this patch.