Passed
Push — master ( d9b37c...9a8532 )
by Johnny
02:05
created
src/Cortex/Node.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
         $this->source = remove_whitespace($source);
95 95
         $this->number = $number;
96 96
 
97
-      //  $this->source = $this->escape($this->source);
97
+        //  $this->source = $this->escape($this->source);
98 98
 
99 99
         $this->determineEmpty();
100 100
         $this->determineComment();
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
 
112 112
         $index = 0;
113 113
         if (is_array($matches[$index]) && isset($matches[$index][0]) && is_null($knownTags) === false && count($matches) == 2) {
114
-             $matches = $matches[$index];
114
+                $matches = $matches[$index];
115 115
 
116 116
             foreach ($matches as $match) {
117 117
                 $str = str_replace(['<', '>'], "", $match);
Please login to merge, or discard this patch.
src/Cortex/Responses/Condition.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,8 +51,8 @@
 block discarded – undo
51 51
                         $matches = $this->getMatchesFromPattern($pattern, $this->source());
52 52
                         $condition = $matches[0][0];
53 53
 
54
-                        $ret = str_replace($condition, "",  $this->source());
55
-                        return str_replace($condition, "",  $this->source());
54
+                        $ret = str_replace($condition, "", $this->source());
55
+                        return str_replace($condition, "", $this->source());
56 56
                     }
57 57
 
58 58
                 }
Please login to merge, or discard this patch.