Passed
Push — master ( 3948f8...d3c224 )
by Dāvis
07:09
created
Script/Utils/Lexer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
      */
103 103
     static public function expandRange($range_definition)
104 104
     {
105
-        $haystack = preg_replace_callback('/(?<from>.)\-(?<to>.)/', function ($e) {
105
+        $haystack = preg_replace_callback('/(?<from>.)\-(?<to>.)/', function($e) {
106 106
             if (is_numeric($e['from']) || is_numeric($e['to'])) {
107 107
                 $from = $e['from'];
108 108
                 $to = $e['to'];
Please login to merge, or discard this patch.