Passed
Push — master ( 1eec8f...87a06b )
by Johnny
08:20
created
src/Cortex/Triggers/Arrays.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
                 if ($wildcards) {
62 62
                     $wildcards = Collection::make($wildcards)->flatten()->all();
63 63
 
64
-                  //  $x = synapse()->memory->shortTerm()->get('wildcards');
64
+                    //  $x = synapse()->memory->shortTerm()->get('wildcards');
65 65
 //                    $trigger = synapse()->memory->shortTerm()->get('trigger');
66 66
 
67 67
 //                    synapse()->memory->shortTerm()->put('wildcards', $wildcards);
Please login to merge, or discard this patch.
src/Cortex/Triggers/Wildcard.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
         $trigger = $this->parseTags($trigger, $input);
45 45
 
46 46
         $wildcards = [
47
-     //       '/@(\s+)/' => ".*?\b",
47
+        //       '/@(\s+)/' => ".*?\b",
48 48
             '/_/' => '[^\s\d]+?',
49 49
             '/#/' => '\\d+?',
50 50
             '/\*/' => '.*?',
Please login to merge, or discard this patch.
src/Cortex/Tags/ArrayTag.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -93,10 +93,10 @@
 block discarded – undo
93 93
 
94 94
                                     foreach ($result as $wildcard) {
95 95
                                         $wildcards[] = $wildcard[0];
96
-   //                                     $source = str_replace("(@{$name})", $wildcard[0], $source);
96
+    //                                     $source = str_replace("(@{$name})", $wildcard[0], $source);
97 97
                                     }
98 98
 
99
-                             //       synapse()->memory->shortTerm()->put("wildcards", $wildcards);
99
+                                //       synapse()->memory->shortTerm()->put("wildcards", $wildcards);
100 100
                                 }
101 101
                             }
102 102
                         } else {
Please login to merge, or discard this patch.
src/bootstrap.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
 $synapse->triggers = Axiom\Collections\Collection::make(
51 51
     [
52 52
         "Atomic",
53
-     //   "Arrays",
53
+        //   "Arrays",
54 54
         "Alternation",
55 55
         "Wildcard",
56 56
         "Redirect",
Please login to merge, or discard this patch.