@@ -8,7 +8,7 @@ discard block |
||
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\cache; |
14 | 14 | |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | */ |
85 | 85 | public function getCacheKey(string $name): string |
86 | 86 | { |
87 | - return $this->options['prefix'] . $name; |
|
87 | + return $this->options['prefix'].$name; |
|
88 | 88 | } |
89 | 89 | |
90 | 90 | /** |
@@ -145,14 +145,14 @@ discard block |
||
145 | 145 | |
146 | 146 | $time = time(); |
147 | 147 | |
148 | - while ($time + 5 > time() && $this->has($name . '_lock')) { |
|
148 | + while ($time + 5 > time() && $this->has($name.'_lock')) { |
|
149 | 149 | // 存在锁定则等待 |
150 | 150 | usleep(200000); |
151 | 151 | } |
152 | 152 | |
153 | 153 | try { |
154 | 154 | // 锁定 |
155 | - $this->set($name . '_lock', true); |
|
155 | + $this->set($name.'_lock', true); |
|
156 | 156 | |
157 | 157 | if ($value instanceof Closure) { |
158 | 158 | // 获取缓存数据 |
@@ -163,9 +163,9 @@ discard block |
||
163 | 163 | $this->set($name, $value, $expire); |
164 | 164 | |
165 | 165 | // 解锁 |
166 | - $this->delete($name . '_lock'); |
|
166 | + $this->delete($name.'_lock'); |
|
167 | 167 | } catch (Exception | throwable $e) { |
168 | - $this->delete($name . '_lock'); |
|
168 | + $this->delete($name.'_lock'); |
|
169 | 169 | throw $e; |
170 | 170 | } |
171 | 171 | |
@@ -184,7 +184,7 @@ discard block |
||
184 | 184 | $key = implode('-', $name); |
185 | 185 | |
186 | 186 | if (!isset($this->tag[$key])) { |
187 | - $name = array_map(function ($val) { |
|
187 | + $name = array_map(function($val) { |
|
188 | 188 | return $this->getTagKey($val); |
189 | 189 | }, $name); |
190 | 190 | $this->tag[$key] = new TagSet($name, $this); |
@@ -212,7 +212,7 @@ discard block |
||
212 | 212 | */ |
213 | 213 | public function getTagKey(string $tag): string |
214 | 214 | { |
215 | - return $this->options['tag_prefix'] . md5($tag); |
|
215 | + return $this->options['tag_prefix'].md5($tag); |
|
216 | 216 | } |
217 | 217 | |
218 | 218 | /** |
@@ -8,7 +8,7 @@ discard block |
||
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\cache\driver; |
14 | 14 | |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | } |
49 | 49 | |
50 | 50 | if (empty($this->options['path'])) { |
51 | - $this->options['path'] = $app->getRuntimePath() . 'cache'; |
|
51 | + $this->options['path'] = $app->getRuntimePath().'cache'; |
|
52 | 52 | } |
53 | 53 | |
54 | 54 | if (substr($this->options['path'], -1) != DIRECTORY_SEPARATOR) { |
@@ -68,14 +68,14 @@ discard block |
||
68 | 68 | |
69 | 69 | if ($this->options['cache_subdir']) { |
70 | 70 | // 使用子目录 |
71 | - $name = substr($name, 0, 2) . DIRECTORY_SEPARATOR . substr($name, 2); |
|
71 | + $name = substr($name, 0, 2).DIRECTORY_SEPARATOR.substr($name, 2); |
|
72 | 72 | } |
73 | 73 | |
74 | 74 | if ($this->options['prefix']) { |
75 | - $name = $this->options['prefix'] . DIRECTORY_SEPARATOR . $name; |
|
75 | + $name = $this->options['prefix'].DIRECTORY_SEPARATOR.$name; |
|
76 | 76 | } |
77 | 77 | |
78 | - return $this->options['path'] . $name . '.php'; |
|
78 | + return $this->options['path'].$name.'.php'; |
|
79 | 79 | } |
80 | 80 | |
81 | 81 | /** |
@@ -181,7 +181,7 @@ discard block |
||
181 | 181 | $data = gzcompress($data, 3); |
182 | 182 | } |
183 | 183 | |
184 | - $data = "<?php\n//" . sprintf('%012d', $expire) . "\n exit();?>\n" . $data; |
|
184 | + $data = "<?php\n//".sprintf('%012d', $expire)."\n exit();?>\n".$data; |
|
185 | 185 | $result = file_put_contents($filename, $data); |
186 | 186 | |
187 | 187 | if ($result) { |
@@ -250,7 +250,7 @@ discard block |
||
250 | 250 | { |
251 | 251 | $this->writeTimes++; |
252 | 252 | |
253 | - $dirname = $this->options['path'] . $this->options['prefix']; |
|
253 | + $dirname = $this->options['path'].$this->options['prefix']; |
|
254 | 254 | |
255 | 255 | $this->rmdir($dirname); |
256 | 256 |
@@ -118,10 +118,10 @@ |
||
118 | 118 | $redis->shouldReceive("del")->once()->with('baz')->andReturnTrue(); |
119 | 119 | $redis->shouldReceive("flushDB")->once()->andReturnTrue(); |
120 | 120 | $redis->shouldReceive("set")->once()->with('bar', \Opis\Closure\serialize('foobar'))->andReturnTrue(); |
121 | - $redis->shouldReceive("sAdd")->once()->with('tag:' . md5('foo'), 'bar')->andReturnTrue(); |
|
122 | - $redis->shouldReceive("sMembers")->once()->with('tag:' . md5('foo'))->andReturn(['bar']); |
|
121 | + $redis->shouldReceive("sAdd")->once()->with('tag:'.md5('foo'), 'bar')->andReturnTrue(); |
|
122 | + $redis->shouldReceive("sMembers")->once()->with('tag:'.md5('foo'))->andReturn(['bar']); |
|
123 | 123 | $redis->shouldReceive("del")->once()->with(['bar'])->andReturnTrue(); |
124 | - $redis->shouldReceive("del")->once()->with('tag:' . md5('foo'))->andReturnTrue(); |
|
124 | + $redis->shouldReceive("del")->once()->with('tag:'.md5('foo'))->andReturnTrue(); |
|
125 | 125 | |
126 | 126 | $this->cache->set('foo', 5); |
127 | 127 | $this->cache->inc('foo'); |
@@ -8,7 +8,7 @@ discard block |
||
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 | |
@@ -155,13 +155,13 @@ discard block |
||
155 | 155 | */ |
156 | 156 | public function __construct(string $rootPath = '') |
157 | 157 | { |
158 | - $this->thinkPath = dirname(__DIR__) . DIRECTORY_SEPARATOR; |
|
159 | - $this->rootPath = $rootPath ? rtrim($rootPath, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR : $this->getDefaultRootPath(); |
|
160 | - $this->appPath = $this->rootPath . 'app' . DIRECTORY_SEPARATOR; |
|
161 | - $this->runtimePath = $this->rootPath . 'runtime' . DIRECTORY_SEPARATOR; |
|
158 | + $this->thinkPath = dirname(__DIR__).DIRECTORY_SEPARATOR; |
|
159 | + $this->rootPath = $rootPath ? rtrim($rootPath, DIRECTORY_SEPARATOR).DIRECTORY_SEPARATOR : $this->getDefaultRootPath(); |
|
160 | + $this->appPath = $this->rootPath.'app'.DIRECTORY_SEPARATOR; |
|
161 | + $this->runtimePath = $this->rootPath.'runtime'.DIRECTORY_SEPARATOR; |
|
162 | 162 | |
163 | - if (is_file($this->appPath . 'provider.php')) { |
|
164 | - $this->bind(include $this->appPath . 'provider.php'); |
|
163 | + if (is_file($this->appPath.'provider.php')) { |
|
164 | + $this->bind(include $this->appPath.'provider.php'); |
|
165 | 165 | } |
166 | 166 | |
167 | 167 | static::setInstance($this); |
@@ -221,7 +221,7 @@ discard block |
||
221 | 221 | public function getService($service) |
222 | 222 | { |
223 | 223 | $name = is_string($service) ? $service : get_class($service); |
224 | - return array_values(array_filter($this->services, function ($value) use ($name) { |
|
224 | + return array_values(array_filter($this->services, function($value) use ($name) { |
|
225 | 225 | return $value instanceof $name; |
226 | 226 | }, ARRAY_FILTER_USE_BOTH))[0] ?? null; |
227 | 227 | } |
@@ -297,7 +297,7 @@ discard block |
||
297 | 297 | */ |
298 | 298 | public function getBasePath(): string |
299 | 299 | { |
300 | - return $this->rootPath . 'app' . DIRECTORY_SEPARATOR; |
|
300 | + return $this->rootPath.'app'.DIRECTORY_SEPARATOR; |
|
301 | 301 | } |
302 | 302 | |
303 | 303 | /** |
@@ -355,7 +355,7 @@ discard block |
||
355 | 355 | */ |
356 | 356 | public function getConfigPath(): string |
357 | 357 | { |
358 | - return $this->rootPath . 'config' . DIRECTORY_SEPARATOR; |
|
358 | + return $this->rootPath.'config'.DIRECTORY_SEPARATOR; |
|
359 | 359 | } |
360 | 360 | |
361 | 361 | /** |
@@ -401,8 +401,8 @@ discard block |
||
401 | 401 | $this->beginMem = memory_get_usage(); |
402 | 402 | |
403 | 403 | // 加载环境变量 |
404 | - if (is_file($this->rootPath . '.env')) { |
|
405 | - $this->env->load($this->rootPath . '.env'); |
|
404 | + if (is_file($this->rootPath.'.env')) { |
|
405 | + $this->env->load($this->rootPath.'.env'); |
|
406 | 406 | } |
407 | 407 | |
408 | 408 | $this->configExt = $this->env->get('config_ext', '.php'); |
@@ -415,7 +415,7 @@ discard block |
||
415 | 415 | // 加载框架默认语言包 |
416 | 416 | $langSet = $this->lang->defaultLangSet(); |
417 | 417 | |
418 | - $this->lang->load($this->thinkPath . 'lang' . DIRECTORY_SEPARATOR . $langSet . '.php'); |
|
418 | + $this->lang->load($this->thinkPath.'lang'.DIRECTORY_SEPARATOR.$langSet.'.php'); |
|
419 | 419 | |
420 | 420 | // 加载应用默认语言包 |
421 | 421 | $this->loadLangPack($langSet); |
@@ -454,7 +454,7 @@ discard block |
||
454 | 454 | } |
455 | 455 | |
456 | 456 | // 加载系统语言包 |
457 | - $files = glob($this->appPath . 'lang' . DIRECTORY_SEPARATOR . $langset . '.*'); |
|
457 | + $files = glob($this->appPath.'lang'.DIRECTORY_SEPARATOR.$langset.'.*'); |
|
458 | 458 | $this->lang->load($files); |
459 | 459 | |
460 | 460 | // 加载扩展(自定义)语言包 |
@@ -472,7 +472,7 @@ discard block |
||
472 | 472 | */ |
473 | 473 | public function boot(): void |
474 | 474 | { |
475 | - array_walk($this->services, function ($service) { |
|
475 | + array_walk($this->services, function($service) { |
|
476 | 476 | $this->bootService($service); |
477 | 477 | }); |
478 | 478 | } |
@@ -486,30 +486,30 @@ discard block |
||
486 | 486 | { |
487 | 487 | $appPath = $this->getAppPath(); |
488 | 488 | |
489 | - if (is_file($appPath . 'common.php')) { |
|
490 | - include_once $appPath . 'common.php'; |
|
489 | + if (is_file($appPath.'common.php')) { |
|
490 | + include_once $appPath.'common.php'; |
|
491 | 491 | } |
492 | 492 | |
493 | - include_once $this->thinkPath . 'helper.php'; |
|
493 | + include_once $this->thinkPath.'helper.php'; |
|
494 | 494 | |
495 | 495 | $configPath = $this->getConfigPath(); |
496 | 496 | |
497 | 497 | $files = []; |
498 | 498 | |
499 | 499 | if (is_dir($configPath)) { |
500 | - $files = glob($configPath . '*' . $this->configExt); |
|
500 | + $files = glob($configPath.'*'.$this->configExt); |
|
501 | 501 | } |
502 | 502 | |
503 | 503 | foreach ($files as $file) { |
504 | 504 | $this->config->load($file, pathinfo($file, PATHINFO_FILENAME)); |
505 | 505 | } |
506 | 506 | |
507 | - if (is_file($appPath . 'event.php')) { |
|
508 | - $this->loadEvent(include $appPath . 'event.php'); |
|
507 | + if (is_file($appPath.'event.php')) { |
|
508 | + $this->loadEvent(include $appPath.'event.php'); |
|
509 | 509 | } |
510 | 510 | |
511 | - if (is_file($appPath . 'service.php')) { |
|
512 | - $services = include $appPath . 'service.php'; |
|
511 | + if (is_file($appPath.'service.php')) { |
|
512 | + $services = include $appPath.'service.php'; |
|
513 | 513 | foreach ($services as $service) { |
514 | 514 | $this->register($service); |
515 | 515 | } |
@@ -574,9 +574,9 @@ discard block |
||
574 | 574 | $name = str_replace(['/', '.'], '\\', $name); |
575 | 575 | $array = explode('\\', $name); |
576 | 576 | $class = Str::studly(array_pop($array)); |
577 | - $path = $array ? implode('\\', $array) . '\\' : ''; |
|
577 | + $path = $array ? implode('\\', $array).'\\' : ''; |
|
578 | 578 | |
579 | - return $this->namespace . '\\' . $layer . '\\' . $path . $class; |
|
579 | + return $this->namespace.'\\'.$layer.'\\'.$path.$class; |
|
580 | 580 | } |
581 | 581 | |
582 | 582 | /** |
@@ -597,7 +597,7 @@ discard block |
||
597 | 597 | { |
598 | 598 | $path = dirname(dirname(dirname(dirname($this->thinkPath)))); |
599 | 599 | |
600 | - return $path . DIRECTORY_SEPARATOR; |
|
600 | + return $path.DIRECTORY_SEPARATOR; |
|
601 | 601 | } |
602 | 602 | |
603 | 603 | } |
@@ -29,14 +29,14 @@ discard block |
||
29 | 29 | { |
30 | 30 | $app = $input->getArgument('app'); |
31 | 31 | |
32 | - if (empty($app) && !is_dir($this->app->getBasePath() . 'controller')) { |
|
32 | + if (empty($app) && !is_dir($this->app->getBasePath().'controller')) { |
|
33 | 33 | $output->writeln('<error>Miss app name!</error>'); |
34 | 34 | return false; |
35 | 35 | } |
36 | 36 | |
37 | - $path = $this->app->getRootPath() . 'runtime' . DIRECTORY_SEPARATOR . ($app ? $app . DIRECTORY_SEPARATOR : ''); |
|
37 | + $path = $this->app->getRootPath().'runtime'.DIRECTORY_SEPARATOR.($app ? $app.DIRECTORY_SEPARATOR : ''); |
|
38 | 38 | |
39 | - $filename = $path . 'route.php'; |
|
39 | + $filename = $path.'route.php'; |
|
40 | 40 | if (is_file($filename)) { |
41 | 41 | unlink($filename); |
42 | 42 | } |
@@ -51,21 +51,21 @@ discard block |
||
51 | 51 | $this->app->route->lazy(false); |
52 | 52 | |
53 | 53 | // 路由检测 |
54 | - $path = $this->app->getRootPath() . 'route' . DIRECTORY_SEPARATOR . ($app ? $app . DIRECTORY_SEPARATOR : ''); |
|
54 | + $path = $this->app->getRootPath().'route'.DIRECTORY_SEPARATOR.($app ? $app.DIRECTORY_SEPARATOR : ''); |
|
55 | 55 | |
56 | 56 | $files = is_dir($path) ? scandir($path) : []; |
57 | 57 | |
58 | 58 | foreach ($files as $file) { |
59 | 59 | if (strpos($file, '.php')) { |
60 | - include $path . $file; |
|
60 | + include $path.$file; |
|
61 | 61 | } |
62 | 62 | } |
63 | 63 | |
64 | 64 | //触发路由载入完成事件 |
65 | 65 | $this->app->event->trigger(RouteLoaded::class); |
66 | 66 | |
67 | - $content = '<?php ' . PHP_EOL . 'return '; |
|
68 | - $content .= '\Opis\Closure\unserialize(\'' . \Opis\Closure\serialize($this->app->route->getName()) . '\');'; |
|
67 | + $content = '<?php '.PHP_EOL.'return '; |
|
68 | + $content .= '\Opis\Closure\unserialize(\''.\Opis\Closure\serialize($this->app->route->getName()).'\');'; |
|
69 | 69 | return $content; |
70 | 70 | } |
71 | 71 |
@@ -8,7 +8,7 @@ discard block |
||
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\middleware; |
14 | 14 | |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | |
61 | 61 | // 注册日志监听 |
62 | 62 | if ($debug) { |
63 | - $this->app->event->listen(LogWrite::class, function ($event) { |
|
63 | + $this->app->event->listen(LogWrite::class, function($event) { |
|
64 | 64 | if (empty($this->config['channel']) || $this->config['channel'] == $event->channel) { |
65 | 65 | $this->log = array_merge_recursive($this->log, $event->log); |
66 | 66 | } |
@@ -98,9 +98,9 @@ discard block |
||
98 | 98 | // trace调试信息注入 |
99 | 99 | $pos = strripos($content, '</body>'); |
100 | 100 | if (false !== $pos) { |
101 | - $content = substr($content, 0, $pos) . $output . substr($content, $pos); |
|
101 | + $content = substr($content, 0, $pos).$output.substr($content, $pos); |
|
102 | 102 | } else { |
103 | - $content = $content . $output; |
|
103 | + $content = $content.$output; |
|
104 | 104 | } |
105 | 105 | } |
106 | 106 | } |
@@ -8,7 +8,7 @@ discard block |
||
8 | 8 | // +---------------------------------------------------------------------- |
9 | 9 | // | Author: yunwuxin <[email protected]> |
10 | 10 | // +---------------------------------------------------------------------- |
11 | -declare (strict_types = 1); |
|
11 | +declare(strict_types=1); |
|
12 | 12 | |
13 | 13 | namespace think\console; |
14 | 14 | |
@@ -207,7 +207,7 @@ discard block |
||
207 | 207 | $array[] = str_repeat($style[1], $width + 2); |
208 | 208 | } |
209 | 209 | |
210 | - return $style[0] . implode($style[2], $array) . $style[3] . PHP_EOL; |
|
210 | + return $style[0].implode($style[2], $array).$style[3].PHP_EOL; |
|
211 | 211 | } |
212 | 212 | |
213 | 213 | /** |
@@ -221,11 +221,11 @@ discard block |
||
221 | 221 | $content = $this->renderSeparator('top'); |
222 | 222 | |
223 | 223 | foreach ($this->header as $key => $header) { |
224 | - $array[] = ' ' . str_pad($header, $this->colWidth[$key], $style[1], $this->headerAlign); |
|
224 | + $array[] = ' '.str_pad($header, $this->colWidth[$key], $style[1], $this->headerAlign); |
|
225 | 225 | } |
226 | 226 | |
227 | 227 | if (!empty($array)) { |
228 | - $content .= $style[0] . implode(' ' . $style[2], $array) . ' ' . $style[3] . PHP_EOL; |
|
228 | + $content .= $style[0].implode(' '.$style[2], $array).' '.$style[3].PHP_EOL; |
|
229 | 229 | |
230 | 230 | if (!empty($this->rows)) { |
231 | 231 | $content .= $this->renderSeparator('middle'); |
@@ -268,12 +268,12 @@ discard block |
||
268 | 268 | $content .= $this->renderSeparator('middle'); |
269 | 269 | } elseif (is_scalar($row)) { |
270 | 270 | $content .= $this->renderSeparator('cross-top'); |
271 | - $width = 3 * (count($this->colWidth) - 1) + array_reduce($this->colWidth, function ($a, $b) { |
|
271 | + $width = 3 * (count($this->colWidth) - 1) + array_reduce($this->colWidth, function($a, $b) { |
|
272 | 272 | return $a + $b; |
273 | 273 | }); |
274 | 274 | $array = str_pad($row, $width); |
275 | 275 | |
276 | - $content .= $style[0] . ' ' . $array . ' ' . $style[3] . PHP_EOL; |
|
276 | + $content .= $style[0].' '.$array.' '.$style[3].PHP_EOL; |
|
277 | 277 | $content .= $this->renderSeparator('cross-bottom'); |
278 | 278 | } else { |
279 | 279 | $array = []; |
@@ -285,10 +285,10 @@ discard block |
||
285 | 285 | if (false !== $encoding = mb_detect_encoding((string) $val, null, true)) { |
286 | 286 | $width += strlen((string) $val) - mb_strwidth((string) $val, $encoding); |
287 | 287 | } |
288 | - $array[] = ' ' . str_pad((string) $val, $width, ' ', $this->cellAlign); |
|
288 | + $array[] = ' '.str_pad((string) $val, $width, ' ', $this->cellAlign); |
|
289 | 289 | } |
290 | 290 | |
291 | - $content .= $style[0] . implode(' ' . $style[2], $array) . ' ' . $style[3] . PHP_EOL; |
|
291 | + $content .= $style[0].implode(' '.$style[2], $array).' '.$style[3].PHP_EOL; |
|
292 | 292 | } |
293 | 293 | } |
294 | 294 | } |
@@ -8,7 +8,7 @@ discard block |
||
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 | |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | public function getConfig(string $name = '', $default = null) |
68 | 68 | { |
69 | 69 | if ('' !== $name) { |
70 | - return $this->config->get('database.' . $name, $default); |
|
70 | + return $this->config->get('database.'.$name, $default); |
|
71 | 71 | } |
72 | 72 | |
73 | 73 | return $this->config->get('database'); |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | public function event(string $event, callable $callback): void |
93 | 93 | { |
94 | 94 | if ($this->event) { |
95 | - $this->event->listen('db.' . $event, $callback); |
|
95 | + $this->event->listen('db.'.$event, $callback); |
|
96 | 96 | } |
97 | 97 | } |
98 | 98 | |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | public function trigger(string $event, $params = null, bool $once = false) |
108 | 108 | { |
109 | 109 | if ($this->event) { |
110 | - return $this->event->trigger('db.' . $event, $params, $once); |
|
110 | + return $this->event->trigger('db.'.$event, $params, $once); |
|
111 | 111 | } |
112 | 112 | } |
113 | 113 | } |
@@ -8,7 +8,7 @@ discard block |
||
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 | |
@@ -172,7 +172,7 @@ discard block |
||
172 | 172 | } |
173 | 173 | } |
174 | 174 | } elseif (false === strpos($domain, '.') && 0 !== strpos($domain, $rootDomain)) { |
175 | - $domain .= '.' . $rootDomain; |
|
175 | + $domain .= '.'.$rootDomain; |
|
176 | 176 | } |
177 | 177 | |
178 | 178 | if (false !== strpos($domain, '://')) { |
@@ -181,7 +181,7 @@ discard block |
||
181 | 181 | $scheme = $request->isSsl() ? 'https://' : 'http://'; |
182 | 182 | } |
183 | 183 | |
184 | - return $scheme . $domain; |
|
184 | + return $scheme.$domain; |
|
185 | 185 | } |
186 | 186 | |
187 | 187 | /** |
@@ -200,7 +200,7 @@ discard block |
||
200 | 200 | } |
201 | 201 | } |
202 | 202 | |
203 | - return (empty($suffix) || 0 === strpos($suffix, '.')) ? (string) $suffix : '.' . $suffix; |
|
203 | + return (empty($suffix) || 0 === strpos($suffix, '.')) ? (string) $suffix : '.'.$suffix; |
|
204 | 204 | } |
205 | 205 | |
206 | 206 | /** |
@@ -237,7 +237,7 @@ discard block |
||
237 | 237 | $app = empty($path) ? $app : array_pop($path); |
238 | 238 | } |
239 | 239 | |
240 | - $url = $controller . '/' . $action; |
|
240 | + $url = $controller.'/'.$action; |
|
241 | 241 | |
242 | 242 | if ($app && $this->app->config->get('app.auto_multi_app')) { |
243 | 243 | $bind = $this->app->config->get('app.domain_bind', []); |
@@ -247,9 +247,9 @@ discard block |
||
247 | 247 | $map = $this->app->config->get('app.app_map', []); |
248 | 248 | |
249 | 249 | if ($key = array_search($app, $map)) { |
250 | - $url = $key . '/' . $url; |
|
250 | + $url = $key.'/'.$url; |
|
251 | 251 | } else { |
252 | - $url = $app . '/' . $url; |
|
252 | + $url = $app.'/'.$url; |
|
253 | 253 | } |
254 | 254 | } |
255 | 255 | } |
@@ -314,7 +314,7 @@ discard block |
||
314 | 314 | } |
315 | 315 | |
316 | 316 | if (!in_array($request->port(), [80, 443])) { |
317 | - $domain .= ':' . $request->port(); |
|
317 | + $domain .= ':'.$request->port(); |
|
318 | 318 | } |
319 | 319 | |
320 | 320 | if (empty($pattern)) { |
@@ -325,12 +325,12 @@ discard block |
||
325 | 325 | |
326 | 326 | foreach ($pattern as $key => $val) { |
327 | 327 | if (isset($vars[$key])) { |
328 | - $url = str_replace(['[:' . $key . ']', '<' . $key . '?>', ':' . $key, '<' . $key . '>'], $type ? $vars[$key] : urlencode((string) $vars[$key]), $url); |
|
328 | + $url = str_replace(['[:'.$key.']', '<'.$key.'?>', ':'.$key, '<'.$key.'>'], $type ? $vars[$key] : urlencode((string) $vars[$key]), $url); |
|
329 | 329 | unset($vars[$key]); |
330 | 330 | $url = str_replace(['/?', '-?'], ['/', '-'], $url); |
331 | 331 | $result = [rtrim($url, '?/-'), $domain, $suffix]; |
332 | 332 | } elseif (2 == $val) { |
333 | - $url = str_replace(['/[:' . $key . ']', '[:' . $key . ']', '<' . $key . '?>'], '', $url); |
|
333 | + $url = str_replace(['/[:'.$key.']', '[:'.$key.']', '<'.$key.'?>'], '', $url); |
|
334 | 334 | $url = str_replace(['/?', '-?'], ['/', '-'], $url); |
335 | 335 | $result = [rtrim($url, '?/-'), $domain, $suffix]; |
336 | 336 | } else { |
@@ -358,7 +358,7 @@ discard block |
||
358 | 358 | if (0 === strpos($url, '[') && $pos = strpos($url, ']')) { |
359 | 359 | // [name] 表示使用路由命名标识生成URL |
360 | 360 | $name = substr($url, 1, $pos - 1); |
361 | - $url = 'name' . substr($url, $pos + 1); |
|
361 | + $url = 'name'.substr($url, $pos + 1); |
|
362 | 362 | } |
363 | 363 | |
364 | 364 | if (false === strpos($url, '://') && 0 !== strpos($url, '/')) { |
@@ -385,7 +385,7 @@ discard block |
||
385 | 385 | } |
386 | 386 | |
387 | 387 | if ($url) { |
388 | - $checkName = isset($name) ? $name : $url . (isset($info['query']) ? '?' . $info['query'] : ''); |
|
388 | + $checkName = isset($name) ? $name : $url.(isset($info['query']) ? '?'.$info['query'] : ''); |
|
389 | 389 | $checkDomain = $domain && is_string($domain) ? $domain : null; |
390 | 390 | |
391 | 391 | $rule = $this->route->getName($checkName, $checkDomain); |
@@ -412,10 +412,10 @@ discard block |
||
412 | 412 | } |
413 | 413 | |
414 | 414 | if ($request->app() && $this->app->config->get('app.auto_multi_app') && !$this->app->http->isBindDomain()) { |
415 | - $url = $request->app() . '/' . $url; |
|
415 | + $url = $request->app().'/'.$url; |
|
416 | 416 | } |
417 | 417 | } elseif (!empty($rule) && isset($name)) { |
418 | - throw new \InvalidArgumentException('route name not exists:' . $name); |
|
418 | + throw new \InvalidArgumentException('route name not exists:'.$name); |
|
419 | 419 | } else { |
420 | 420 | // 检测URL绑定 |
421 | 421 | $bind = $this->route->getDomainBind($domain && is_string($domain) ? $domain : null); |
@@ -453,7 +453,7 @@ discard block |
||
453 | 453 | $file = str_replace('\\', '/', dirname($file)); |
454 | 454 | } |
455 | 455 | |
456 | - $url = rtrim($file, '/') . '/' . $url; |
|
456 | + $url = rtrim($file, '/').'/'.$url; |
|
457 | 457 | |
458 | 458 | // URL后缀 |
459 | 459 | if ('/' == substr($url, -1) || '' == $url) { |
@@ -463,32 +463,32 @@ discard block |
||
463 | 463 | } |
464 | 464 | |
465 | 465 | // 锚点 |
466 | - $anchor = !empty($anchor) ? '#' . $anchor : ''; |
|
466 | + $anchor = !empty($anchor) ? '#'.$anchor : ''; |
|
467 | 467 | |
468 | 468 | // 参数组装 |
469 | 469 | if (!empty($vars)) { |
470 | 470 | // 添加参数 |
471 | 471 | if ($this->route->config('url_common_param')) { |
472 | 472 | $vars = http_build_query($vars); |
473 | - $url .= $suffix . '?' . $vars . $anchor; |
|
473 | + $url .= $suffix.'?'.$vars.$anchor; |
|
474 | 474 | } else { |
475 | 475 | foreach ($vars as $var => $val) { |
476 | 476 | if ('' !== $val) { |
477 | - $url .= $depr . $var . $depr . urlencode((string) $val); |
|
477 | + $url .= $depr.$var.$depr.urlencode((string) $val); |
|
478 | 478 | } |
479 | 479 | } |
480 | 480 | |
481 | - $url .= $suffix . $anchor; |
|
481 | + $url .= $suffix.$anchor; |
|
482 | 482 | } |
483 | 483 | } else { |
484 | - $url .= $suffix . $anchor; |
|
484 | + $url .= $suffix.$anchor; |
|
485 | 485 | } |
486 | 486 | |
487 | 487 | // 检测域名 |
488 | 488 | $domain = $this->parseDomain($url, $domain); |
489 | 489 | |
490 | 490 | // URL组装 |
491 | - return $domain . rtrim($this->root, '/') . '/' . ltrim($url, '/'); |
|
491 | + return $domain.rtrim($this->root, '/').'/'.ltrim($url, '/'); |
|
492 | 492 | } |
493 | 493 | |
494 | 494 | public function __toString() |