Passed
Push — master ( b95d42...ba17de )
by Johnny
02:06
created
src/Traits/Tags.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
      */
36 36
     protected function parseTags(string $source): string
37 37
     {
38
-       // $source = $this->escapeUnknownTags($source);
38
+        // $source = $this->escapeUnknownTags($source);
39 39
 
40 40
         $tags = synapse()->memory->tags();
41 41
         foreach ($tags as $tag) {
Please login to merge, or discard this patch.
src/Cortex/Tags/Ok.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
     public function parse(string $source, SourceInput $input): string
55 55
     {
56 56
         if (!$this->sourceAllowed()) {
57
-           return $source;
57
+            return $source;
58 58
         }
59 59
 
60 60
         if ($this->hasMatches($source)) {
Please login to merge, or discard this patch.
src/Cortex/Responses/Atomic.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/Input.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -103,10 +103,10 @@
 block discarded – undo
103 103
         $patterns = synapse()->memory->substitute()->keys()->all();
104 104
         $replacements = synapse()->memory->substitute()->values()->all();
105 105
 
106
-      //  $this->source = mb_strtolower($this->original);
106
+        //  $this->source = mb_strtolower($this->original);
107 107
         $this->source = $this->original;
108
-       // $this->source = preg_replace($patterns, $replacements, $this->source);
109
-       // $this->source = preg_replace('/[^\pL\d\s]+/u', '', $this->source);
110
-       // $this->source = remove_whitespace($this->source);
108
+        // $this->source = preg_replace($patterns, $replacements, $this->source);
109
+        // $this->source = preg_replace('/[^\pL\d\s]+/u', '', $this->source);
110
+        // $this->source = remove_whitespace($this->source);
111 111
     }
112 112
 }
Please login to merge, or discard this patch.