Passed
Push — develop ( c2fb74...bbb2f3 )
by Johnny
02:03
created
src/helpers.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
      */
36 36
     function dd()
37 37
     {
38
-        array_map(function ($x) {
38
+        array_map(function($x) {
39 39
             print_r($x);
40 40
             echo "\n";
41 41
         }, func_get_args());
Please login to merge, or discard this patch.
src/Cortex/Triggers/Trigger.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
      */
31 31
     protected function parseTags(string $trigger, Input $input): string
32 32
     {
33
-        synapse()->tags->each(function ($tag) use (&$trigger, $input) {
33
+        synapse()->tags->each(function($tag) use (&$trigger, $input) {
34 34
             $class = "\\Axiom\\Rivescript\\Cortex\\Tags\\$tag";
35 35
             $tagClass = new $class('trigger');
36 36
 
Please login to merge, or discard this patch.
src/Cortex/Brain.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
                 continue;
59 59
             }
60 60
 
61
-            $commands->each(function ($command) use ($node) {
61
+            $commands->each(function($command) use ($node) {
62 62
                 $class = "\\Axiom\\Rivescript\\Cortex\\Commands\\$command";
63 63
                 $commandClass = new $class();
64 64
                 $commandClass->parse($node);
Please login to merge, or discard this patch.
src/Cortex/Tags/Sentence.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
                 if (strpos($sub, '.') > -1) {
61 61
                     $parts = explode('.', $sub);
62 62
                     if (count($parts) !== 0) {
63
-                        array_walk($parts, function (&$part) {
63
+                        array_walk($parts, function(&$part) {
64 64
                             $part = ucfirst(trim($part));
65 65
                         });
66 66
                     }
Please login to merge, or discard this patch.