Test Failed
Branch master (db7808)
by Florian
04:01
created
src/Renderer/TemplateFolderCollection.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,8 +46,8 @@
 block discarded – undo
46 46
 
47 47
         if (!is_dir($folder)) {
48 48
             throw new MissingTemplateFolderException(sprintf(
49
-               'The folder %s does not exist or is not a folder',
50
-               $folder
49
+                'The folder %s does not exist or is not a folder',
50
+                $folder
51 51
             ));
52 52
         }
53 53
 
Please login to merge, or discard this patch.
src/Service/RenderService.php 1 patch
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.
src/View/HelperAwareView.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
         }
76 76
 
77 77
         if (!is_object($helper)) {
78
-        	throw new RuntimeException(sprintf('%s is not an object, %s given', $name, gettype($helper)));
78
+            throw new RuntimeException(sprintf('%s is not an object, %s given', $name, gettype($helper)));
79 79
         }
80 80
         return $helper;
81 81
     }
Please login to merge, or discard this patch.