Test Failed
Branch master (db7808)
by Florian
07:40 queued 05:32
created
src/Service/RenderServiceInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Phauthentic\Presentation\Service;
5 5
 
Please login to merge, or discard this patch.
src/Service/RequestToTemplateMapperService.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -90,8 +90,8 @@  discard block
 block discarded – undo
90 90
      */
91 91
     public function getTemplatePathFromRequest(ServerRequestInterface $request): string
92 92
     {
93
-        $module = (string)$request->getAttribute('module');
94
-        $component = (string)$request->getAttribute('component');
93
+        $module = (string) $request->getAttribute('module');
94
+        $component = (string) $request->getAttribute('component');
95 95
 
96 96
         $module = empty($module) ? '' : $module;
97 97
         $component = empty($component) ? 'default' : $component;
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
         }
105 105
 
106 106
         if (!empty($module)) {
107
-            return $module . DIRECTORY_SEPARATOR . $component;
107
+            return $module.DIRECTORY_SEPARATOR.$component;
108 108
         }
109 109
 
110 110
         return $component;
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
      */
118 118
     public function getTemplateFromRequest(ServerRequestInterface $request): string
119 119
     {
120
-        $action = (string)$request->getAttribute('action');
120
+        $action = (string) $request->getAttribute('action');
121 121
 
122 122
         if (empty($action)) {
123 123
             return 'default';
Please login to merge, or discard this patch.
src/Service/RequestToTemplateMapperServiceInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Phauthentic\Presentation\Service;
5 5
 
Please login to merge, or discard this patch.
src/View/View.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Phauthentic\Presentation\View;
5 5
 
Please login to merge, or discard this patch.
src/View/ViewFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Phauthentic\Presentation\View;
5 5
 
Please login to merge, or discard this patch.
src/View/ViewInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Phauthentic\Presentation\View;
5 5
 
Please login to merge, or discard this patch.
src/View/ViewFactoryInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Phauthentic\Presentation\View;
5 5
 
Please login to merge, or discard this patch.
src/View/ViewAwareInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Phauthentic\Presentation\View;
5 5
 
Please login to merge, or discard this patch.