Passed
Push — master ( 4812ae...635254 )
by Johnny
06:32
created
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/Output.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
     protected function searchTriggers(string $trigger): void
97 97
     {
98 98
         synapse()->triggers->each(
99
-            function ($class) use ($trigger) {
99
+            function($class) use ($trigger) {
100 100
                 $triggerClass = "\\Axiom\\Rivescript\\Cortex\\Triggers\\$class";
101 101
                 $triggerInstance = new $triggerClass(synapse()->input);
102 102
 
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
     protected function parseResponse(string $response): string
189 189
     {
190 190
         synapse()->tags->each(
191
-            function ($tag) use (&$response) {
191
+            function($tag) use (&$response) {
192 192
                 $class = "\\Axiom\\Rivescript\\Cortex\\Tags\\$tag";
193 193
                 $tagClass = new $class();
194 194
 
Please login to merge, or discard this patch.