Passed
Push — master ( 345a82...263d72 )
by Greg
02:44
created
src/GJClasses/Sanitize.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 class Sanitize
5 5
 {
6 6
 
7
-   public function text($text)
7
+    public function text($text)
8 8
     {
9 9
         return htmlspecialchars($text, ENT_QUOTES, 'UTF-8');
10 10
 
Please login to merge, or discard this patch.
src/GJClasses/Unsanitize.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 class Unsanitize
5 5
 {
6 6
 
7
-   public function text($text)
7
+    public function text($text)
8 8
     {
9 9
         return htmlspecialchars_decode($text, ENT_QUOTES);
10 10
 
Please login to merge, or discard this patch.