@@ -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 | |
@@ -171,9 +171,9 @@ discard block |
||
171 | 171 | $this->ruleName = new RuleName(); |
172 | 172 | $this->setDefaultDomain(); |
173 | 173 | |
174 | - if (is_file($this->app->getRuntimePath() . 'route.php')) { |
|
174 | + if (is_file($this->app->getRuntimePath().'route.php')) { |
|
175 | 175 | // 读取路由映射文件 |
176 | - $this->import(include $this->app->getRuntimePath() . 'route.php'); |
|
176 | + $this->import(include $this->app->getRuntimePath().'route.php'); |
|
177 | 177 | } |
178 | 178 | } |
179 | 179 | |
@@ -402,13 +402,13 @@ discard block |
||
402 | 402 | if (is_null($domain)) { |
403 | 403 | $domain = $this->host; |
404 | 404 | } elseif (false === strpos($domain, '.')) { |
405 | - $domain .= '.' . $this->request->rootDomain(); |
|
405 | + $domain .= '.'.$this->request->rootDomain(); |
|
406 | 406 | } |
407 | 407 | |
408 | 408 | $subDomain = $this->request->subDomain(); |
409 | 409 | |
410 | 410 | if (strpos($subDomain, '.')) { |
411 | - $name = '*' . strstr($subDomain, '.'); |
|
411 | + $name = '*'.strstr($subDomain, '.'); |
|
412 | 412 | } |
413 | 413 | |
414 | 414 | if (isset($this->bind[$domain])) { |
@@ -740,7 +740,7 @@ discard block |
||
740 | 740 | $this->init(); |
741 | 741 | |
742 | 742 | if ($withRoute) { |
743 | - $checkCallback = function () use ($request, $withRoute) { |
|
743 | + $checkCallback = function() use ($request, $withRoute) { |
|
744 | 744 | //加载路由 |
745 | 745 | $withRoute(); |
746 | 746 | return $this->check(); |
@@ -759,7 +759,7 @@ discard block |
||
759 | 759 | |
760 | 760 | $dispatch->init($this->app); |
761 | 761 | |
762 | - $this->app->middleware->add(function () use ($dispatch) { |
|
762 | + $this->app->middleware->add(function() use ($dispatch) { |
|
763 | 763 | try { |
764 | 764 | $response = $dispatch->run(); |
765 | 765 | } catch (HttpResponseException $exception) { |
@@ -783,7 +783,7 @@ discard block |
||
783 | 783 | $closure = $this->config['route_check_cache_key']; |
784 | 784 | $routeKey = $closure($request); |
785 | 785 | } else { |
786 | - $routeKey = md5($request->baseUrl(true) . ':' . $request->method()); |
|
786 | + $routeKey = md5($request->baseUrl(true).':'.$request->method()); |
|
787 | 787 | } |
788 | 788 | |
789 | 789 | return $routeKey; |
@@ -833,10 +833,10 @@ discard block |
||
833 | 833 | $path = $pathinfo; |
834 | 834 | } elseif ($suffix) { |
835 | 835 | // 去除正常的URL后缀 |
836 | - $path = preg_replace('/\.(' . ltrim($suffix, '.') . ')$/i', '', $pathinfo); |
|
836 | + $path = preg_replace('/\.('.ltrim($suffix, '.').')$/i', '', $pathinfo); |
|
837 | 837 | } else { |
838 | 838 | // 允许任何后缀访问 |
839 | - $path = preg_replace('/\.' . $this->request->ext() . '$/i', '', $pathinfo); |
|
839 | + $path = preg_replace('/\.'.$this->request->ext().'$/i', '', $pathinfo); |
|
840 | 840 | } |
841 | 841 | |
842 | 842 | return $path; |
@@ -879,9 +879,9 @@ discard block |
||
879 | 879 | $item = $this->domains[$this->host]; |
880 | 880 | } elseif (isset($this->domains[$subDomain])) { |
881 | 881 | $item = $this->domains[$subDomain]; |
882 | - } elseif (isset($this->domains['*.' . $domain2]) && !empty($domain3)) { |
|
882 | + } elseif (isset($this->domains['*.'.$domain2]) && !empty($domain3)) { |
|
883 | 883 | // 泛三级域名 |
884 | - $item = $this->domains['*.' . $domain2]; |
|
884 | + $item = $this->domains['*.'.$domain2]; |
|
885 | 885 | $panDomain = $domain3; |
886 | 886 | } elseif (isset($this->domains['*']) && !empty($domain2)) { |
887 | 887 | // 泛二级域名 |
@@ -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 | |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | public function __construct(App $app) |
58 | 58 | { |
59 | 59 | $this->app = $app; |
60 | - $this->multi = is_dir($this->app->getBasePath() . 'controller') ? false : true; |
|
60 | + $this->multi = is_dir($this->app->getBasePath().'controller') ? false : true; |
|
61 | 61 | } |
62 | 62 | |
63 | 63 | /** |
@@ -193,7 +193,7 @@ discard block |
||
193 | 193 | |
194 | 194 | protected function dispatchToRoute($request) |
195 | 195 | { |
196 | - $withRoute = $this->app->config->get('app.with_route', true) ? function () { |
|
196 | + $withRoute = $this->app->config->get('app.with_route', true) ? function() { |
|
197 | 197 | $this->loadRoutes(); |
198 | 198 | } : null; |
199 | 199 | |
@@ -205,8 +205,8 @@ discard block |
||
205 | 205 | */ |
206 | 206 | protected function loadMiddleware(): void |
207 | 207 | { |
208 | - if (is_file($this->app->getBasePath() . 'middleware.php')) { |
|
209 | - $this->app->middleware->import(include $this->app->getBasePath() . 'middleware.php'); |
|
208 | + if (is_file($this->app->getBasePath().'middleware.php')) { |
|
209 | + $this->app->middleware->import(include $this->app->getBasePath().'middleware.php'); |
|
210 | 210 | } |
211 | 211 | } |
212 | 212 | |
@@ -221,7 +221,7 @@ discard block |
||
221 | 221 | $routePath = $this->getRoutePath(); |
222 | 222 | |
223 | 223 | if (is_dir($routePath)) { |
224 | - $files = glob($routePath . '*.php'); |
|
224 | + $files = glob($routePath.'*.php'); |
|
225 | 225 | foreach ($files as $file) { |
226 | 226 | include $file; |
227 | 227 | } |
@@ -237,11 +237,11 @@ discard block |
||
237 | 237 | */ |
238 | 238 | protected function getRoutePath(): string |
239 | 239 | { |
240 | - if ($this->isMulti() && is_dir($this->app->getAppPath() . 'route')) { |
|
241 | - return $this->app->getAppPath() . 'route' . DIRECTORY_SEPARATOR; |
|
240 | + if ($this->isMulti() && is_dir($this->app->getAppPath().'route')) { |
|
241 | + return $this->app->getAppPath().'route'.DIRECTORY_SEPARATOR; |
|
242 | 242 | } |
243 | 243 | |
244 | - return $this->app->getRootPath() . 'route' . DIRECTORY_SEPARATOR . ($this->isMulti() ? $this->getName() . DIRECTORY_SEPARATOR : ''); |
|
244 | + return $this->app->getRootPath().'route'.DIRECTORY_SEPARATOR.($this->isMulti() ? $this->getName().DIRECTORY_SEPARATOR : ''); |
|
245 | 245 | } |
246 | 246 | |
247 | 247 | /** |
@@ -328,7 +328,7 @@ discard block |
||
328 | 328 | $appName = $map[$name]; |
329 | 329 | } |
330 | 330 | } elseif ($name && (false !== array_search($name, $map) || in_array($name, $deny))) { |
331 | - throw new HttpException(404, 'app not exists:' . $name); |
|
331 | + throw new HttpException(404, 'app not exists:'.$name); |
|
332 | 332 | } elseif ($name && isset($map['*'])) { |
333 | 333 | $appName = $map['*']; |
334 | 334 | } else { |
@@ -336,7 +336,7 @@ discard block |
||
336 | 336 | } |
337 | 337 | |
338 | 338 | if ($name) { |
339 | - $this->app->request->setRoot('/' . $name); |
|
339 | + $this->app->request->setRoot('/'.$name); |
|
340 | 340 | $this->app->request->setPathinfo(strpos($path, '/') ? ltrim(strstr($path, '/'), '/') : ''); |
341 | 341 | } |
342 | 342 | } |
@@ -355,11 +355,11 @@ discard block |
||
355 | 355 | { |
356 | 356 | $this->name = $appName; |
357 | 357 | $this->app->request->setApp($appName); |
358 | - $this->app->setAppPath($this->path ?: $this->app->getBasePath() . $appName . DIRECTORY_SEPARATOR); |
|
359 | - $this->app->setRuntimePath($this->app->getRootPath() . 'runtime' . DIRECTORY_SEPARATOR . $appName . DIRECTORY_SEPARATOR); |
|
358 | + $this->app->setAppPath($this->path ?: $this->app->getBasePath().$appName.DIRECTORY_SEPARATOR); |
|
359 | + $this->app->setRuntimePath($this->app->getRootPath().'runtime'.DIRECTORY_SEPARATOR.$appName.DIRECTORY_SEPARATOR); |
|
360 | 360 | |
361 | 361 | // 设置应用命名空间 |
362 | - $this->app->setNamespace($this->app->config->get('app.app_namespace') ?: 'app\\' . $appName); |
|
362 | + $this->app->setNamespace($this->app->config->get('app.app_namespace') ?: 'app\\'.$appName); |
|
363 | 363 | |
364 | 364 | //加载应用 |
365 | 365 | $this->loadApp($appName); |
@@ -376,34 +376,34 @@ discard block |
||
376 | 376 | if (is_dir($this->app->getAppPath())) { |
377 | 377 | $appPath = $this->app->getAppPath(); |
378 | 378 | |
379 | - if (is_file($appPath . 'common.php')) { |
|
380 | - include_once $appPath . 'common.php'; |
|
379 | + if (is_file($appPath.'common.php')) { |
|
380 | + include_once $appPath.'common.php'; |
|
381 | 381 | } |
382 | 382 | |
383 | 383 | $configPath = $this->app->getConfigPath(); |
384 | 384 | |
385 | 385 | $files = []; |
386 | 386 | |
387 | - if (is_dir($configPath . $appName)) { |
|
388 | - $files = array_merge($files, glob($configPath . $appName . DIRECTORY_SEPARATOR . '*' . $this->app->getConfigExt())); |
|
389 | - } elseif (is_dir($appPath . 'config')) { |
|
390 | - $files = array_merge($files, glob($appPath . 'config' . DIRECTORY_SEPARATOR . '*' . $this->app->getConfigExt())); |
|
387 | + if (is_dir($configPath.$appName)) { |
|
388 | + $files = array_merge($files, glob($configPath.$appName.DIRECTORY_SEPARATOR.'*'.$this->app->getConfigExt())); |
|
389 | + } elseif (is_dir($appPath.'config')) { |
|
390 | + $files = array_merge($files, glob($appPath.'config'.DIRECTORY_SEPARATOR.'*'.$this->app->getConfigExt())); |
|
391 | 391 | } |
392 | 392 | |
393 | 393 | foreach ($files as $file) { |
394 | 394 | $this->app->config->load($file, pathinfo($file, PATHINFO_FILENAME)); |
395 | 395 | } |
396 | 396 | |
397 | - if (is_file($appPath . 'event.php')) { |
|
398 | - $this->app->loadEvent(include $appPath . 'event.php'); |
|
397 | + if (is_file($appPath.'event.php')) { |
|
398 | + $this->app->loadEvent(include $appPath.'event.php'); |
|
399 | 399 | } |
400 | 400 | |
401 | - if (is_file($appPath . 'middleware.php')) { |
|
402 | - $this->app->middleware->import(include $appPath . 'middleware.php'); |
|
401 | + if (is_file($appPath.'middleware.php')) { |
|
402 | + $this->app->middleware->import(include $appPath.'middleware.php'); |
|
403 | 403 | } |
404 | 404 | |
405 | - if (is_file($appPath . 'provider.php')) { |
|
406 | - $this->app->bind(include $appPath . 'provider.php'); |
|
405 | + if (is_file($appPath.'provider.php')) { |
|
406 | + $this->app->bind(include $appPath.'provider.php'); |
|
407 | 407 | } |
408 | 408 | } |
409 | 409 |