Test Failed
Push — master ( db7808...a3c6b7 )
by Florian
01:56
created
src/Renderer/Exception/MissingTemplateFolderException.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\Renderer\Exception;
5 5
 
Please login to merge, or discard this patch.
src/Renderer/RendererInterface.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\Renderer;
5 5
 
Please login to merge, or discard this patch.
src/Service/ResponseRenderServiceInterface.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/HelperAwareViewInterface.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/Renderer/NativePHPRenderer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Phauthentic\Presentation\Renderer;
5 5
 
@@ -42,10 +42,10 @@  discard block
 block discarded – undo
42 42
         $path = $view->getTemplatePath();
43 43
         $path = Utility::sanitizePath($path);
44 44
 
45
-        $template = $this->templateRoot . DIRECTORY_SEPARATOR . $path .  $view->getTemplate() . '.php';
45
+        $template = $this->templateRoot.DIRECTORY_SEPARATOR.$path.$view->getTemplate().'.php';
46 46
 
47 47
         if (!is_file($template)) {
48
-            throw new MissingTemplateException('Template file missing: ' . $template);
48
+            throw new MissingTemplateException('Template file missing: '.$template);
49 49
         }
50 50
 
51 51
         return $template;
Please login to merge, or discard this patch.
src/Renderer/ViewRendererInterface.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\Renderer;
5 5
 
Please login to merge, or discard this patch.
src/Renderer/AbstractBaseRenderer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Phauthentic\Presentation\Renderer;
5 5
 
@@ -103,10 +103,10 @@  discard block
 block discarded – undo
103 103
         $path = $view->getTemplatePath();
104 104
         $path = $this->sanitizePath($path);
105 105
 
106
-        $template = $this->templateRoot . DIRECTORY_SEPARATOR . $path . $view->getTemplate() . '.' . $this->extension;
106
+        $template = $this->templateRoot.DIRECTORY_SEPARATOR.$path.$view->getTemplate().'.'.$this->extension;
107 107
 
108 108
         if (!is_file($template)) {
109
-            throw new MissingTemplateException('Template file missing: ' . $template);
109
+            throw new MissingTemplateException('Template file missing: '.$template);
110 110
         }
111 111
 
112 112
         return $template;
Please login to merge, or discard this patch.
src/Renderer/Exception/MissingTemplateException.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\Renderer\Exception;
5 5
 
Please login to merge, or discard this patch.
src/Renderer/Exception/RendererException.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\Renderer\Exception;
5 5
 
Please login to merge, or discard this patch.