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