Test Failed
Branch zf3-version (0116c8)
by Diego
03:32
created
module/Api/test/Controller/DistributionReportControllerTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
         $configOverrides = [];
28 28
 
29 29
         $this->setApplicationConfig(ArrayUtils::merge(
30
-            include __DIR__ . '/../../../../config/application.config.php',
30
+            include __DIR__.'/../../../../config/application.config.php',
31 31
             $configOverrides
32 32
         ));
33 33
 
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 
56 56
     protected function getDataSet()
57 57
     {
58
-        return $this->createXMLDataSet(__DIR__ . '/../fixtures/database.xml');
58
+        return $this->createXMLDataSet(__DIR__.'/../fixtures/database.xml');
59 59
     }
60 60
 
61 61
     public function testGetWholeSectoralDistributionActionActionCanBeAccessed()
Please login to merge, or discard this patch.
module/Api/test/Controller/EvolutionReportControllerTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
         $configOverrides = [];
28 28
 
29 29
         $this->setApplicationConfig(ArrayUtils::merge(
30
-            include __DIR__ . '/../../../../config/application.config.php',
30
+            include __DIR__.'/../../../../config/application.config.php',
31 31
             $configOverrides
32 32
         ));
33 33
 
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 
56 56
     protected function getDataSet()
57 57
     {
58
-        return $this->createXMLDataSet(__DIR__ . '/../fixtures/database.xml');
58
+        return $this->createXMLDataSet(__DIR__.'/../fixtures/database.xml');
59 59
     }
60 60
 
61 61
     public function testGetWholeSectoralEvolutionActionCanBeAccessed()
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/config/module.config.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@
 block discarded – undo
113 113
         'factories' => [
114 114
             Controller\DistributionReportController::class => Factory\DistributionReportControllerFactory::class,
115 115
             Controller\EvolutionReportController::class => Factory\EvolutionReportControllerFactory::class,
116
-             Controller\IndicatorsReportController::class => Factory\IndicatorsReportControllerFactory::class,     
116
+                Controller\IndicatorsReportController::class => Factory\IndicatorsReportControllerFactory::class,     
117 117
         ],
118 118
     ],
119 119
     'view_manager' => [
Please login to merge, or discard this patch.