Completed
Push — 6.0 ( 54f609...174718 )
by yun
04:30
created
src/think/db/concern/ParamsBind.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 // +----------------------------------------------------------------------
9 9
 // | Author: liu21st <[email protected]>
10 10
 // +----------------------------------------------------------------------
11
-declare (strict_types = 1);
11
+declare(strict_types=1);
12 12
 
13 13
 namespace think\db\concern;
14 14
 
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
      */
48 48
     public function bindValue($value, int $type = null, string $name = null)
49 49
     {
50
-        $name = $name ?: 'ThinkBind_' . (count($this->bind) + 1) . '_';
50
+        $name = $name ?: 'ThinkBind_'.(count($this->bind) + 1).'_';
51 51
 
52 52
         $this->bind[$name] = [$value, $type ?: PDO::PARAM_STR];
53 53
         return $name;
@@ -81,9 +81,9 @@  discard block
 block discarded – undo
81 81
             }
82 82
 
83 83
             if (is_numeric($key)) {
84
-                $sql = substr_replace($sql, ':' . $name, strpos($sql, '?'), 1);
84
+                $sql = substr_replace($sql, ':'.$name, strpos($sql, '?'), 1);
85 85
             } else {
86
-                $sql = str_replace(':' . $key, ':' . $name, $sql);
86
+                $sql = str_replace(':'.$key, ':'.$name, $sql);
87 87
             }
88 88
         }
89 89
     }
Please login to merge, or discard this patch.
src/think/db/concern/WhereQuery.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 // +----------------------------------------------------------------------
9 9
 // | Author: liu21st <[email protected]>
10 10
 // +----------------------------------------------------------------------
11
-declare (strict_types = 1);
11
+declare(strict_types=1);
12 12
 
13 13
 namespace think\db\concern;
14 14
 
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
             foreach ($this->options['where'] as $logic => &$where) {
53 53
                 foreach ($where as $key => &$val) {
54 54
                     if (is_array($val) && !strpos($val[0], '.')) {
55
-                        $val[0] = $via . '.' . $val[0];
55
+                        $val[0] = $via.'.'.$val[0];
56 56
                     }
57 57
                 }
58 58
             }
@@ -362,7 +362,7 @@  discard block
 block discarded – undo
362 362
         $logic = strtoupper($logic);
363 363
 
364 364
         if (is_string($field) && !empty($this->options['via']) && false === strpos($field, '.')) {
365
-            $field = $this->options['via'] . '.' . $field;
365
+            $field = $this->options['via'].'.'.$field;
366 366
         }
367 367
 
368 368
         if ($field instanceof Raw) {
Please login to merge, or discard this patch.
src/think/db/concern/TimeFieldQuery.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 // +----------------------------------------------------------------------
9 9
 // | Author: liu21st <[email protected]>
10 10
 // +----------------------------------------------------------------------
11
-declare (strict_types = 1);
11
+declare(strict_types=1);
12 12
 
13 13
 namespace think\db\concern;
14 14
 
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
             $op    = 'between';
62 62
         }
63 63
 
64
-        return $this->parseWhereExp($logic, $field, strtolower($op) . ' time', $range, [], true);
64
+        return $this->parseWhereExp($logic, $field, strtolower($op).' time', $range, [], true);
65 65
     }
66 66
 
67 67
     /**
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
     public function whereTimeInterval(string $field, string $start, string $interval = 'day', int $step = 1, string $logic = 'AND')
78 78
     {
79 79
         $startTime = strtotime($start);
80
-        $endTime   = strtotime(($step > 0 ? '+' : '-') . abs($step) . ' ' . $interval . (abs($step) > 1 ? 's' : ''), $startTime);
80
+        $endTime   = strtotime(($step > 0 ? '+' : '-').abs($step).' '.$interval.(abs($step) > 1 ? 's' : ''), $startTime);
81 81
 
82 82
         return $this->whereTime($field, 'between', $step > 0 ? [$startTime, $endTime] : [$endTime, $startTime], $logic);
83 83
     }
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
             $year = date('Y', strtotime($year));
134 134
         }
135 135
 
136
-        return $this->whereTimeInterval($field, $year . '-1-1', 'year', $step, $logic);
136
+        return $this->whereTimeInterval($field, $year.'-1-1', 'year', $step, $logic);
137 137
     }
138 138
 
139 139
     /**
Please login to merge, or discard this patch.
src/think/db/concern/AggregateQuery.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 // +----------------------------------------------------------------------
9 9
 // | Author: liu21st <[email protected]>
10 10
 // +----------------------------------------------------------------------
11
-declare (strict_types = 1);
11
+declare(strict_types=1);
12 12
 
13 13
 namespace think\db\concern;
14 14
 
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
             // 支持GROUP
43 43
             $options = $this->getOptions();
44 44
             $subSql  = $this->options($options)
45
-                ->field('count(' . $field . ') AS think_count')
45
+                ->field('count('.$field.') AS think_count')
46 46
                 ->bind($this->bind)
47 47
                 ->buildSql();
48 48
 
Please login to merge, or discard this patch.
src/think/db/concern/TableFieldInfo.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 // +----------------------------------------------------------------------
9 9
 // | Author: liu21st <[email protected]>
10 10
 // +----------------------------------------------------------------------
11
-declare (strict_types = 1);
11
+declare(strict_types=1);
12 12
 
13 13
 namespace think\db\concern;
14 14
 
Please login to merge, or discard this patch.
src/think/db/concern/PDOQuery.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 // +----------------------------------------------------------------------
9 9
 // | Author: liu21st <[email protected]>
10 10
 // +----------------------------------------------------------------------
11
-declare (strict_types = 1);
11
+declare(strict_types=1);
12 12
 
13 13
 namespace think\db\concern;
14 14
 
Please login to merge, or discard this patch.
src/think/console/command/RouteBuild.php 1 patch
Spacing   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
     {
31 31
         $app = $input->getArgument('app');
32 32
 
33
-        if (empty($app) && !is_dir($this->app->getBasePath() . 'controller')) {
33
+        if (empty($app) && !is_dir($this->app->getBasePath().'controller')) {
34 34
             $output->writeln('<error>Miss app name!</error>');
35 35
             return false;
36 36
         }
@@ -47,21 +47,21 @@  discard block
 block discarded – undo
47 47
     protected function buildRoute(string $app = null): string
48 48
     {
49 49
         if ($app) {
50
-            $path      = $this->app->getBasePath() . $app . DIRECTORY_SEPARATOR;
51
-            $namespace = 'app\\' . $app;
50
+            $path      = $this->app->getBasePath().$app.DIRECTORY_SEPARATOR;
51
+            $namespace = 'app\\'.$app;
52 52
         } else {
53 53
             $path      = $this->app->getBasePath();
54 54
             $namespace = 'app';
55 55
         }
56 56
 
57
-        $content = '<?php ' . PHP_EOL . '// 根据注解自动生成的路由规则' . PHP_EOL . 'use think\\facade\\Route;' . PHP_EOL;
57
+        $content = '<?php '.PHP_EOL.'// 根据注解自动生成的路由规则'.PHP_EOL.'use think\\facade\\Route;'.PHP_EOL;
58 58
 
59 59
         $layer  = $this->app->config->get('route.controller_layer');
60 60
         $suffix = $this->app->config->get('route.controller_suffix');
61 61
 
62
-        $content .= $this->buildDirRoute($path . $layer . DIRECTORY_SEPARATOR, $namespace, $suffix, $layer);
62
+        $content .= $this->buildDirRoute($path.$layer.DIRECTORY_SEPARATOR, $namespace, $suffix, $layer);
63 63
 
64
-        $filename = $this->app->getRootPath() . 'runtime' . DIRECTORY_SEPARATOR . ($app ? $app . DIRECTORY_SEPARATOR : '') . 'build_route.php';
64
+        $filename = $this->app->getRootPath().'runtime'.DIRECTORY_SEPARATOR.($app ? $app.DIRECTORY_SEPARATOR : '').'build_route.php';
65 65
 
66 66
         if (!file_exists($filename)) {
67 67
             touch($filename);
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
     protected function buildDirRoute(string $path, string $namespace, bool $suffix, string $layer): string
90 90
     {
91 91
         $content     = '';
92
-        $controllers = glob($path . '*.php');
92
+        $controllers = glob($path.'*.php');
93 93
 
94 94
         foreach ($controllers as $controller) {
95 95
             $controller = basename($controller, '.php');
@@ -99,21 +99,21 @@  discard block
 block discarded – undo
99 99
                 $controller = substr($controller, 0, -10);
100 100
             }
101 101
 
102
-            $class = new \ReflectionClass($namespace . '\\' . $layer . '\\' . $controller);
102
+            $class = new \ReflectionClass($namespace.'\\'.$layer.'\\'.$controller);
103 103
 
104 104
             if (strpos($layer, '\\')) {
105 105
                 // 多级控制器
106 106
                 $level      = str_replace(DIRECTORY_SEPARATOR, '.', substr($layer, 11));
107
-                $controller = $level . '.' . $controller;
107
+                $controller = $level.'.'.$controller;
108 108
             }
109 109
 
110 110
             $content .= $this->getControllerRoute($class, $controller);
111 111
         }
112 112
 
113
-        $subDir = glob($path . '*', GLOB_ONLYDIR);
113
+        $subDir = glob($path.'*', GLOB_ONLYDIR);
114 114
 
115 115
         foreach ($subDir as $dir) {
116
-            $content .= $this->buildDirRoute($dir . DIRECTORY_SEPARATOR, $namespace, $suffix, $layer . '\\' . basename($dir));
116
+            $content .= $this->buildDirRoute($dir.DIRECTORY_SEPARATOR, $namespace, $suffix, $layer.'\\'.basename($dir));
117 117
         }
118 118
 
119 119
         return $content;
@@ -133,12 +133,12 @@  discard block
 block discarded – undo
133 133
 
134 134
         if (false !== strpos($comment, '@route(')) {
135 135
             $comment = $this->parseRouteComment($comment);
136
-            $comment = preg_replace('/route\(\s?([\'\"][\-\_\/\:\<\>\?\$\[\]\w]+[\'\"])\s?\)/is', 'Route::resource(\1,\'' . $controller . '\')', $comment);
137
-            $content .= PHP_EOL . $comment;
136
+            $comment = preg_replace('/route\(\s?([\'\"][\-\_\/\:\<\>\?\$\[\]\w]+[\'\"])\s?\)/is', 'Route::resource(\1,\''.$controller.'\')', $comment);
137
+            $content .= PHP_EOL.$comment;
138 138
         } elseif (false !== strpos($comment, '@group(')) {
139 139
             $comment = $this->parseRouteComment($comment, '@group(');
140 140
             $comment = preg_replace('/group\(\s?([\'\"][\-\_\/\w]+[\'\"])\s?\)/is', 'Route::group(\1)', $comment);
141
-            $content .= PHP_EOL . $comment;
141
+            $content .= PHP_EOL.$comment;
142 142
             preg_match('/group\(\s?[\'\"]([\-\_\/\w]+)[\'\"]\s?\)/is', $comment, $matches);
143 143
             $group = $matches[1];
144 144
         }
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
         foreach ($methods as $method) {
149 149
             $comment = $this->getMethodRouteComment($controller, $method, $group ?? null);
150 150
             if ($comment) {
151
-                $content .= PHP_EOL . $comment;
151
+                $content .= PHP_EOL.$comment;
152 152
             }
153 153
         }
154 154
 
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
     {
167 167
         $comment = substr($comment, 3, -2);
168 168
         $comment = explode(PHP_EOL, substr(strstr(trim($comment), $tag), 1));
169
-        $comment = array_map(function ($item) {
169
+        $comment = array_map(function($item) {
170 170
             return trim(trim($item), ' \t*');
171 171
         }, $comment);
172 172
 
@@ -175,11 +175,11 @@  discard block
 block discarded – undo
175 175
             $comment = array_slice($comment, 0, false === $key ? 1 : $key);
176 176
         }
177 177
 
178
-        $comment = implode(PHP_EOL . "\t", $comment) . ';';
178
+        $comment = implode(PHP_EOL."\t", $comment).';';
179 179
 
180 180
         if (strpos($comment, '{')) {
181
-            $comment = preg_replace_callback('/\{\s?.*?\s?\}/s', function ($matches) {
182
-                return false !== strpos($matches[0], '"') ? '[' . substr(var_export(json_decode($matches[0], true), true), 7, -1) . ']' : $matches[0];
181
+            $comment = preg_replace_callback('/\{\s?.*?\s?\}/s', function($matches) {
182
+                return false !== strpos($matches[0], '"') ? '['.substr(var_export(json_decode($matches[0], true), true), 7, -1).']' : $matches[0];
183 183
             }, $comment);
184 184
         }
185 185
         return $comment;
@@ -200,15 +200,15 @@  discard block
 block discarded – undo
200 200
         if (false !== strpos($comment, '@route(')) {
201 201
             $comment = $this->parseRouteComment($comment);
202 202
             $action  = $reflectMethod->getName();
203
-            $group   = $group ? '->group(\'' . $group . '\')' : '';
203
+            $group   = $group ? '->group(\''.$group.'\')' : '';
204 204
 
205 205
             if ($suffix = $this->app->route->config('action_suffix')) {
206 206
                 $action = substr($action, 0, -strlen($suffix));
207 207
             }
208 208
 
209
-            $route   = $controller . '/' . $action;
210
-            $comment = preg_replace('/route\s?\(\s?([\'\"][\-\_\/\:\<\>\?\$\[\]\w]+[\'\"])\s?\,?\s?[\'\"]?(\w+?)[\'\"]?\s?\)/is', 'Route::\2(\1,\'' . $route . '\')' . $group, $comment);
211
-            $comment = preg_replace('/route\s?\(\s?([\'\"][\-\_\/\:\<\>\?\$\[\]\w]+[\'\"])\s?\)/is', 'Route::rule(\1,\'' . $route . '\')' . $group, $comment);
209
+            $route   = $controller.'/'.$action;
210
+            $comment = preg_replace('/route\s?\(\s?([\'\"][\-\_\/\:\<\>\?\$\[\]\w]+[\'\"])\s?\,?\s?[\'\"]?(\w+?)[\'\"]?\s?\)/is', 'Route::\2(\1,\''.$route.'\')'.$group, $comment);
211
+            $comment = preg_replace('/route\s?\(\s?([\'\"][\-\_\/\:\<\>\?\$\[\]\w]+[\'\"])\s?\)/is', 'Route::rule(\1,\''.$route.'\')'.$group, $comment);
212 212
 
213 213
             return $comment;
214 214
         }
Please login to merge, or discard this patch.
src/think/Route.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 // +----------------------------------------------------------------------
9 9
 // | Author: liu21st <[email protected]>
10 10
 // +----------------------------------------------------------------------
11
-declare (strict_types = 1);
11
+declare(strict_types=1);
12 12
 
13 13
 namespace think;
14 14
 
@@ -175,9 +175,9 @@  discard block
 block discarded – undo
175 175
             $this->cache = $this->app->cache->store(true === $this->config['route_check_cache'] ? '' : $this->config['route_check_cache']);
176 176
         }
177 177
 
178
-        if (is_file($this->app->getRuntimePath() . 'route.php')) {
178
+        if (is_file($this->app->getRuntimePath().'route.php')) {
179 179
             // 读取路由映射文件
180
-            $this->import(include $this->app->getRuntimePath() . 'route.php');
180
+            $this->import(include $this->app->getRuntimePath().'route.php');
181 181
         }
182 182
     }
183 183
 
@@ -390,13 +390,13 @@  discard block
 block discarded – undo
390 390
         if (is_null($domain)) {
391 391
             $domain = $this->host;
392 392
         } elseif (false === strpos($domain, '.')) {
393
-            $domain .= '.' . $this->request->rootDomain();
393
+            $domain .= '.'.$this->request->rootDomain();
394 394
         }
395 395
 
396 396
         $subDomain = $this->request->subDomain();
397 397
 
398 398
         if (strpos($subDomain, '.')) {
399
-            $name = '*' . strstr($subDomain, '.');
399
+            $name = '*'.strstr($subDomain, '.');
400 400
         }
401 401
 
402 402
         if (isset($this->bind[$domain])) {
@@ -727,7 +727,7 @@  discard block
 block discarded – undo
727 727
         $this->init();
728 728
 
729 729
         if ($withRoute) {
730
-            $checkCallback = function () use ($request, $withRoute) {
730
+            $checkCallback = function() use ($request, $withRoute) {
731 731
                 //加载路由
732 732
                 $withRoute();
733 733
                 return $this->check();
@@ -746,7 +746,7 @@  discard block
 block discarded – undo
746 746
 
747 747
         $dispatch->init($this->app);
748 748
 
749
-        $this->app->middleware->add(function () use ($dispatch) {
749
+        $this->app->middleware->add(function() use ($dispatch) {
750 750
             try {
751 751
                 $response = $dispatch->run();
752 752
             } catch (HttpResponseException $exception) {
@@ -770,7 +770,7 @@  discard block
 block discarded – undo
770 770
             $closure  = $this->config['route_check_cache_key'];
771 771
             $routeKey = $closure($request);
772 772
         } else {
773
-            $routeKey = md5($request->baseUrl(true) . ':' . $request->method());
773
+            $routeKey = md5($request->baseUrl(true).':'.$request->method());
774 774
         }
775 775
 
776 776
         return $routeKey;
@@ -820,10 +820,10 @@  discard block
 block discarded – undo
820 820
             $path = $pathinfo;
821 821
         } elseif ($suffix) {
822 822
             // 去除正常的URL后缀
823
-            $path = preg_replace('/\.(' . ltrim($suffix, '.') . ')$/i', '', $pathinfo);
823
+            $path = preg_replace('/\.('.ltrim($suffix, '.').')$/i', '', $pathinfo);
824 824
         } else {
825 825
             // 允许任何后缀访问
826
-            $path = preg_replace('/\.' . $this->request->ext() . '$/i', '', $pathinfo);
826
+            $path = preg_replace('/\.'.$this->request->ext().'$/i', '', $pathinfo);
827 827
         }
828 828
 
829 829
         return $path;
@@ -866,9 +866,9 @@  discard block
 block discarded – undo
866 866
                 $item = $this->domains[$this->host];
867 867
             } elseif (isset($this->domains[$subDomain])) {
868 868
                 $item = $this->domains[$subDomain];
869
-            } elseif (isset($this->domains['*.' . $domain2]) && !empty($domain3)) {
869
+            } elseif (isset($this->domains['*.'.$domain2]) && !empty($domain3)) {
870 870
                 // 泛三级域名
871
-                $item      = $this->domains['*.' . $domain2];
871
+                $item      = $this->domains['*.'.$domain2];
872 872
                 $panDomain = $domain3;
873 873
             } elseif (isset($this->domains['*']) && !empty($domain2)) {
874 874
                 // 泛二级域名
Please login to merge, or discard this patch.
src/think/route/RuleItem.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 // +----------------------------------------------------------------------
9 9
 // | Author: liu21st <[email protected]>
10 10
 // +----------------------------------------------------------------------
11
-declare (strict_types = 1);
11
+declare(strict_types=1);
12 12
 
13 13
 namespace think\route;
14 14
 
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
         $rule = '/' != $rule ? ltrim($rule, '/') : '';
135 135
 
136 136
         if ($this->parent && $prefix = $this->parent->getFullName()) {
137
-            $rule = $prefix . ($rule ? '/' . ltrim($rule, '/') : '');
137
+            $rule = $prefix.($rule ? '/'.ltrim($rule, '/') : '');
138 138
         }
139 139
 
140 140
         if (false !== strpos($rule, ':')) {
@@ -237,7 +237,7 @@  discard block
 block discarded – undo
237 237
 
238 238
         if (isset($option['ext'])) {
239 239
             // 路由ext参数 优先于系统配置的URL伪静态后缀参数
240
-            $url = preg_replace('/\.(' . $request->ext() . ')$/i', '', $url);
240
+            $url = preg_replace('/\.('.$request->ext().')$/i', '', $url);
241 241
         }
242 242
 
243 243
         return $url;
@@ -261,38 +261,38 @@  discard block
 block discarded – undo
261 261
         $pattern = array_merge($this->parent->getPattern(), $this->pattern);
262 262
 
263 263
         // 检查完整规则定义
264
-        if (isset($pattern['__url__']) && !preg_match(0 === strpos($pattern['__url__'], '/') ? $pattern['__url__'] : '/^' . $pattern['__url__'] . ($completeMatch ? '$' : '') . '/', str_replace('|', $depr, $url))) {
264
+        if (isset($pattern['__url__']) && !preg_match(0 === strpos($pattern['__url__'], '/') ? $pattern['__url__'] : '/^'.$pattern['__url__'].($completeMatch ? '$' : '').'/', str_replace('|', $depr, $url))) {
265 265
             return false;
266 266
         }
267 267
 
268 268
         $var  = [];
269
-        $url  = $depr . str_replace('|', $depr, $url);
270
-        $rule = $depr . str_replace('/', $depr, $this->rule);
269
+        $url  = $depr.str_replace('|', $depr, $url);
270
+        $rule = $depr.str_replace('/', $depr, $this->rule);
271 271
 
272 272
         if ($depr == $rule && $depr != $url) {
273 273
             return false;
274 274
         }
275 275
 
276 276
         if (false === strpos($rule, '<')) {
277
-            if (0 === strcasecmp($rule, $url) || (!$completeMatch && 0 === strncasecmp($rule . $depr, $url . $depr, strlen($rule . $depr)))) {
277
+            if (0 === strcasecmp($rule, $url) || (!$completeMatch && 0 === strncasecmp($rule.$depr, $url.$depr, strlen($rule.$depr)))) {
278 278
                 return $var;
279 279
             }
280 280
             return false;
281 281
         }
282 282
 
283
-        $slash = preg_quote('/-' . $depr, '/');
283
+        $slash = preg_quote('/-'.$depr, '/');
284 284
 
285
-        if ($matchRule = preg_split('/[' . $slash . ']?<\w+\??>/', $rule, 2)) {
285
+        if ($matchRule = preg_split('/['.$slash.']?<\w+\??>/', $rule, 2)) {
286 286
             if ($matchRule[0] && 0 !== strncasecmp($rule, $url, strlen($matchRule[0]))) {
287 287
                 return false;
288 288
             }
289 289
         }
290 290
 
291
-        if (preg_match_all('/[' . $slash . ']?<?\w+\??>?/', $rule, $matches)) {
291
+        if (preg_match_all('/['.$slash.']?<?\w+\??>?/', $rule, $matches)) {
292 292
             $regex = $this->buildRuleRegex($rule, $matches[0], $pattern, $option, $completeMatch);
293 293
 
294 294
             try {
295
-                if (!preg_match('/^' . $regex . ($completeMatch ? '$' : '') . '/u', $url, $match)) {
295
+                if (!preg_match('/^'.$regex.($completeMatch ? '$' : '').'/u', $url, $match)) {
296 296
                     return false;
297 297
                 }
298 298
             } catch (\Exception $e) {
Please login to merge, or discard this patch.