Passed
Push — master ( af6300...030a8a )
by Johnny
02:39
created
src/Cortex/Responses/Redirect.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     public function parse()
39 39
     {
40 40
         if ($this->responseQueueItem()->getCommand() === '@') {
41
-           return $this->source();
41
+            return $this->source();
42 42
         }
43 43
 
44 44
         return false;
Please login to merge, or discard this patch.
src/Cortex/Tags/Sentence.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
                     }
87 87
                 }
88 88
 
89
-               //  $sub = str_replace(["&#60;", "&#62;"], ["<", ">"], $sub);
89
+                //  $sub = str_replace(["&#60;", "&#62;"], ["<", ">"], $sub);
90 90
 
91 91
                 $source = str_replace($match[0], $sub, $source);
92 92
             }
Please login to merge, or discard this patch.
src/Cortex/Commands/Response.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,8 +40,8 @@
 block discarded – undo
40 40
     public function parse(Node $node): void
41 41
     {
42 42
         $types = [
43
-          '-', '*',
44
-          '^', '@'
43
+            '-', '*',
44
+            '^', '@'
45 45
         ];
46 46
 
47 47
         if (in_array($node->command(), $types) === true) {
Please login to merge, or discard this patch.