Test Failed
Branch master (db7808)
by Florian
04:01
created
src/Renderer/NativePHPRenderer.php 1 patch
Spacing   +2 added lines, -2 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,7 +42,7 @@  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 48
             throw new MissingTemplateException('Template file missing: ' . $template);
Please login to merge, or discard this patch.
src/Renderer/TwigRenderer.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/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/JsonRenderer.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/LightnCandyRenderer.php 1 patch
Spacing   +2 added lines, -2 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
 
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
         $path = $view->getTemplatePath();
69 69
         $path = Utility::sanitizePath($path);
70 70
 
71
-        $template = $this->templateRoot . DIRECTORY_SEPARATOR . $path .  $view->getTemplate() . '.html';
71
+        $template = $this->templateRoot . DIRECTORY_SEPARATOR . $path . $view->getTemplate() . '.html';
72 72
 
73 73
         if (!is_file($template)) {
74 74
             throw new MissingTemplateException('Template file missing: ' . $template);
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/Service/RenderService.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
         $this->responseFactory = $responseFactory;
61 61
     }
62 62
 
63
-	/**
63
+    /**
64 64
      * Adds a renderer and maps it to an output type
65 65
      *
66 66
      * @return $this
Please login to merge, or discard this 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/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/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.