Completed
Pull Request — 6.0 (#1919)
by yun
09:27 queued 04:43
created
src/think/Http.php 1 patch
Spacing   +24 added lines, -24 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
 
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
     public function __construct(App $app)
57 57
     {
58 58
         $this->app   = $app;
59
-        $this->multi = is_dir($this->app->getBasePath() . 'controller') ? false : true;
59
+        $this->multi = is_dir($this->app->getBasePath().'controller') ? false : true;
60 60
     }
61 61
 
62 62
     /**
@@ -172,8 +172,8 @@  discard block
 block discarded – undo
172 172
         $this->initialize();
173 173
 
174 174
         // 加载全局中间件
175
-        if (is_file($this->app->getBasePath() . 'middleware.php')) {
176
-            $this->app->middleware->import(include $this->app->getBasePath() . 'middleware.php');
175
+        if (is_file($this->app->getBasePath().'middleware.php')) {
176
+            $this->app->middleware->import(include $this->app->getBasePath().'middleware.php');
177 177
         }
178 178
 
179 179
         if ($this->multi) {
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
         // 监听HttpRun
187 187
         $this->app->event->trigger('HttpRun');
188 188
 
189
-        $withRoute = $this->app->config->get('app.with_route', true) ? function () {
189
+        $withRoute = $this->app->config->get('app.with_route', true) ? function() {
190 190
             $this->loadRoutes();
191 191
         } : null;
192 192
 
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
     {
203 203
         // 加载路由定义
204 204
         if (is_dir($this->getRoutePath())) {
205
-            $files = glob($this->getRoutePath() . '*.php');
205
+            $files = glob($this->getRoutePath().'*.php');
206 206
             foreach ($files as $file) {
207 207
                 include $file;
208 208
             }
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
      */
219 219
     protected function getRoutePath(): string
220 220
     {
221
-        return $this->app->getRootPath() . 'route' . DIRECTORY_SEPARATOR . ($this->isMulti() ? $this->getName() . DIRECTORY_SEPARATOR : '');
221
+        return $this->app->getRootPath().'route'.DIRECTORY_SEPARATOR.($this->isMulti() ? $this->getName().DIRECTORY_SEPARATOR : '');
222 222
     }
223 223
 
224 224
     /**
@@ -303,7 +303,7 @@  discard block
 block discarded – undo
303 303
                         $appName = $map[$name];
304 304
                     }
305 305
                 } elseif ($name && (false !== array_search($name, $map) || in_array($name, $deny))) {
306
-                    throw new HttpException(404, 'app not exists:' . $name);
306
+                    throw new HttpException(404, 'app not exists:'.$name);
307 307
                 } elseif ($name && isset($map['*'])) {
308 308
                     $appName = $map['*'];
309 309
                 } else {
@@ -311,7 +311,7 @@  discard block
 block discarded – undo
311 311
                 }
312 312
 
313 313
                 if ($name) {
314
-                    $this->app->request->setRoot('/' . $name);
314
+                    $this->app->request->setRoot('/'.$name);
315 315
                     $this->app->request->setPathinfo(strpos($path, '/') ? ltrim(strstr($path, '/'), '/') : '');
316 316
                 }
317 317
             }
@@ -331,41 +331,41 @@  discard block
 block discarded – undo
331 331
     {
332 332
         $this->name = $appName;
333 333
         $this->app->request->setApp($appName);
334
-        $this->app->setAppPath($this->path ?: $this->app->getBasePath() . $appName . DIRECTORY_SEPARATOR);
335
-        $this->app->setRuntimePath($this->app->getRootPath() . 'runtime' . DIRECTORY_SEPARATOR . $appName . DIRECTORY_SEPARATOR);
334
+        $this->app->setAppPath($this->path ?: $this->app->getBasePath().$appName.DIRECTORY_SEPARATOR);
335
+        $this->app->setRuntimePath($this->app->getRootPath().'runtime'.DIRECTORY_SEPARATOR.$appName.DIRECTORY_SEPARATOR);
336 336
 
337 337
         //加载app文件
338 338
         if (is_dir($this->app->getAppPath())) {
339 339
             $appPath = $this->app->getAppPath();
340 340
 
341
-            if (is_file($appPath . 'common.php')) {
342
-                include_once $appPath . 'common.php';
341
+            if (is_file($appPath.'common.php')) {
342
+                include_once $appPath.'common.php';
343 343
             }
344 344
 
345 345
             $configPath = $this->app->getConfigPath();
346 346
 
347 347
             $files = [];
348 348
 
349
-            if (is_dir($configPath . $appName)) {
350
-                $files = array_merge($files, glob($configPath . $appName . DIRECTORY_SEPARATOR . '*' . $this->app->getConfigExt()));
351
-            } elseif (is_dir($appPath . 'config')) {
352
-                $files = array_merge($files, glob($appPath . 'config' . DIRECTORY_SEPARATOR . '*' . $this->app->getConfigExt()));
349
+            if (is_dir($configPath.$appName)) {
350
+                $files = array_merge($files, glob($configPath.$appName.DIRECTORY_SEPARATOR.'*'.$this->app->getConfigExt()));
351
+            } elseif (is_dir($appPath.'config')) {
352
+                $files = array_merge($files, glob($appPath.'config'.DIRECTORY_SEPARATOR.'*'.$this->app->getConfigExt()));
353 353
             }
354 354
 
355 355
             foreach ($files as $file) {
356 356
                 $this->app->config->load($file, pathinfo($file, PATHINFO_FILENAME));
357 357
             }
358 358
 
359
-            if (is_file($appPath . 'event.php')) {
360
-                $this->app->loadEvent(include $appPath . 'event.php');
359
+            if (is_file($appPath.'event.php')) {
360
+                $this->app->loadEvent(include $appPath.'event.php');
361 361
             }
362 362
 
363
-            if (is_file($appPath . 'middleware.php')) {
364
-                $this->app->middleware->import(include $appPath . 'middleware.php');
363
+            if (is_file($appPath.'middleware.php')) {
364
+                $this->app->middleware->import(include $appPath.'middleware.php');
365 365
             }
366 366
 
367
-            if (is_file($appPath . 'provider.php')) {
368
-                $this->app->bind(include $appPath . 'provider.php');
367
+            if (is_file($appPath.'provider.php')) {
368
+                $this->app->bind(include $appPath.'provider.php');
369 369
             }
370 370
         }
371 371
 
@@ -373,7 +373,7 @@  discard block
 block discarded – undo
373 373
         $this->app->loadLangPack($this->app->lang->defaultLangSet());
374 374
 
375 375
         // 设置应用命名空间
376
-        $this->app->setNamespace($this->app->config->get('app.app_namespace') ?: 'app\\' . $appName);
376
+        $this->app->setNamespace($this->app->config->get('app.app_namespace') ?: 'app\\'.$appName);
377 377
     }
378 378
 
379 379
     /**
Please login to merge, or discard this patch.
src/think/console/command/optimize/Route.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -29,14 +29,14 @@  discard block
 block discarded – undo
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
 block discarded – undo
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 .= '\think\App::unserialize(\'' . \think\App::serialize($this->app->route->getName()) . '\');';
67
+        $content = '<?php '.PHP_EOL.'return ';
68
+        $content .= '\think\App::unserialize(\''.\think\App::serialize($this->app->route->getName()).'\');';
69 69
         return $content;
70 70
     }
71 71
 
Please login to merge, or discard this patch.
src/think/console/command/RouteList.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -42,15 +42,15 @@  discard block
 block discarded – undo
42 42
     {
43 43
         $app = $input->getArgument('app');
44 44
 
45
-        if (empty($app) && !is_dir($this->app->getBasePath() . 'controller')) {
45
+        if (empty($app) && !is_dir($this->app->getBasePath().'controller')) {
46 46
             $output->writeln('<error>Miss app name!</error>');
47 47
             return false;
48 48
         }
49 49
 
50 50
         if ($app) {
51
-            $filename = $this->app->getRootPath() . 'runtime' . DIRECTORY_SEPARATOR . $app . DIRECTORY_SEPARATOR . 'route_list_' . $app . '.php';
51
+            $filename = $this->app->getRootPath().'runtime'.DIRECTORY_SEPARATOR.$app.DIRECTORY_SEPARATOR.'route_list_'.$app.'.php';
52 52
         } else {
53
-            $filename = $this->app->getRootPath() . 'runtime' . DIRECTORY_SEPARATOR . 'route_list.php';
53
+            $filename = $this->app->getRootPath().'runtime'.DIRECTORY_SEPARATOR.'route_list.php';
54 54
         }
55 55
 
56 56
         if (is_file($filename)) {
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
         }
61 61
 
62 62
         $content = $this->getRouteList($app);
63
-        file_put_contents($filename, 'Route List' . PHP_EOL . $content);
63
+        file_put_contents($filename, 'Route List'.PHP_EOL.$content);
64 64
     }
65 65
 
66 66
     protected function getRouteList(string $app = null): string
@@ -69,16 +69,16 @@  discard block
 block discarded – undo
69 69
         $this->app->route->clear();
70 70
 
71 71
         if ($app) {
72
-            $path = $this->app->getRootPath() . 'route' . DIRECTORY_SEPARATOR . $app . DIRECTORY_SEPARATOR;
72
+            $path = $this->app->getRootPath().'route'.DIRECTORY_SEPARATOR.$app.DIRECTORY_SEPARATOR;
73 73
         } else {
74
-            $path = $this->app->getRootPath() . 'route' . DIRECTORY_SEPARATOR;
74
+            $path = $this->app->getRootPath().'route'.DIRECTORY_SEPARATOR;
75 75
         }
76 76
 
77 77
         $files = is_dir($path) ? scandir($path) : [];
78 78
 
79 79
         foreach ($files as $file) {
80 80
             if (strpos($file, '.php')) {
81
-                include $path . $file;
81
+                include $path.$file;
82 82
             }
83 83
         }
84 84
 
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
                 $sort = $this->sortBy[$sort];
118 118
             }
119 119
 
120
-            uasort($rows, function ($a, $b) use ($sort) {
120
+            uasort($rows, function($a, $b) use ($sort) {
121 121
                 $itemA = $a[$sort] ?? null;
122 122
                 $itemB = $b[$sort] ?? null;
123 123
 
Please login to merge, or discard this patch.
src/think/Service.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: yunwuxin <[email protected]>
10 10
 // +----------------------------------------------------------------------
11
-declare (strict_types = 1);
11
+declare(strict_types=1);
12 12
 
13 13
 namespace think;
14 14
 
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
      */
37 37
     protected function loadRoutesFrom($path)
38 38
     {
39
-        $this->registerRoutes(function () use ($path) {
39
+        $this->registerRoutes(function() use ($path) {
40 40
             include $path;
41 41
         });
42 42
     }
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
     {
60 60
         $commands = is_array($commands) ? $commands : func_get_args();
61 61
 
62
-        Console::starting(function (Console $console) use ($commands) {
62
+        Console::starting(function(Console $console) use ($commands) {
63 63
             $console->addCommands($commands);
64 64
         });
65 65
     }
Please login to merge, or discard this patch.
src/think/route/RuleGroup.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\route;
14 14
 
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
         }
110 110
 
111 111
         if ($this->parent && $this->parent->getFullName()) {
112
-            $this->fullName = $this->parent->getFullName() . ($this->name ? '/' . $this->name : '');
112
+            $this->fullName = $this->parent->getFullName().($this->name ? '/'.$this->name : '');
113 113
         } else {
114 114
             $this->fullName = $this->name;
115 115
         }
@@ -304,13 +304,13 @@  discard block
 block discarded – undo
304 304
     protected function checkMergeRuleRegex(Request $request, array &$rules, string $url, bool $completeMatch)
305 305
     {
306 306
         $depr  = $this->router->config('pathinfo_depr');
307
-        $url   = $depr . str_replace('|', $depr, $url);
307
+        $url   = $depr.str_replace('|', $depr, $url);
308 308
         $regex = [];
309 309
         $items = [];
310 310
 
311 311
         foreach ($rules as $key => $item) {
312 312
             if ($item instanceof RuleItem) {
313
-                $rule = $depr . str_replace('/', $depr, $item->getRule());
313
+                $rule = $depr.str_replace('/', $depr, $item->getRule());
314 314
                 if ($depr == $rule && $depr != $url) {
315 315
                     unset($rules[$key]);
316 316
                     continue;
@@ -327,21 +327,21 @@  discard block
 block discarded – undo
327 327
                     continue;
328 328
                 }
329 329
 
330
-                $slash = preg_quote('/-' . $depr, '/');
330
+                $slash = preg_quote('/-'.$depr, '/');
331 331
 
332
-                if ($matchRule = preg_split('/[' . $slash . ']<\w+\??>/', $rule, 2)) {
332
+                if ($matchRule = preg_split('/['.$slash.']<\w+\??>/', $rule, 2)) {
333 333
                     if ($matchRule[0] && 0 !== strncasecmp($rule, $url, strlen($matchRule[0]))) {
334 334
                         unset($rules[$key]);
335 335
                         continue;
336 336
                     }
337 337
                 }
338 338
 
339
-                if (preg_match_all('/[' . $slash . ']?<?\w+\??>?/', $rule, $matches)) {
339
+                if (preg_match_all('/['.$slash.']?<?\w+\??>?/', $rule, $matches)) {
340 340
                     unset($rules[$key]);
341 341
                     $pattern = array_merge($this->getPattern(), $item->getPattern());
342 342
                     $option  = array_merge($this->getOption(), $item->getOption());
343 343
 
344
-                    $regex[$key] = $this->buildRuleRegex($rule, $matches[0], $pattern, $option, $complete, '_THINK_' . $key);
344
+                    $regex[$key] = $this->buildRuleRegex($rule, $matches[0], $pattern, $option, $complete, '_THINK_'.$key);
345 345
                     $items[$key] = $item;
346 346
                 }
347 347
             }
@@ -352,7 +352,7 @@  discard block
 block discarded – undo
352 352
         }
353 353
 
354 354
         try {
355
-            $result = preg_match('/^(?:' . implode('|', $regex) . ')/u', $url, $match);
355
+            $result = preg_match('/^(?:'.implode('|', $regex).')/u', $url, $match);
356 356
         } catch (\Exception $e) {
357 357
             throw new Exception('route pattern error');
358 358
         }
@@ -369,7 +369,7 @@  discard block
 block discarded – undo
369 369
 
370 370
             if (!isset($pos)) {
371 371
                 foreach ($regex as $key => $item) {
372
-                    if (0 === strpos(str_replace(['\/', '\-', '\\' . $depr], ['/', '-', $depr], $item), $match[0])) {
372
+                    if (0 === strpos(str_replace(['\/', '\-', '\\'.$depr], ['/', '-', $depr], $item), $match[0])) {
373 373
                         $pos = $key;
374 374
                         break;
375 375
                     }
@@ -398,7 +398,7 @@  discard block
 block discarded – undo
398 398
      * @access public
399 399
      * @return RuleItem|null
400 400
      */
401
-    public function getMissRule():  ? RuleItem
401
+    public function getMissRule(): ? RuleItem
402 402
     {
403 403
         return $this->miss;
404 404
     }
@@ -484,7 +484,7 @@  discard block
 block discarded – undo
484 484
     public function prefix(string $prefix)
485 485
     {
486 486
         if ($this->parent && $this->parent->getOption('prefix')) {
487
-            $prefix = $this->parent->getOption('prefix') . $prefix;
487
+            $prefix = $this->parent->getOption('prefix').$prefix;
488 488
         }
489 489
 
490 490
         return $this->setOption('prefix', $prefix);
Please login to merge, or discard this patch.
src/think/route/Resource.php 1 patch
Spacing   +6 added lines, -6 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
 
@@ -109,10 +109,10 @@  discard block
 block discarded – undo
109 109
             $item  = [];
110 110
 
111 111
             foreach ($array as $val) {
112
-                $item[] = $val . '/<' . ($option['var'][$val] ?? $val . '_id') . '>';
112
+                $item[] = $val.'/<'.($option['var'][$val] ?? $val.'_id').'>';
113 113
             }
114 114
 
115
-            $rule = implode('/', $item) . '/' . $last;
115
+            $rule = implode('/', $item).'/'.$last;
116 116
         }
117 117
 
118 118
         $prefix = substr($rule, strlen($this->name) + 1);
@@ -125,12 +125,12 @@  discard block
 block discarded – undo
125 125
             }
126 126
 
127 127
             if (isset($last) && strpos($val[1], '<id>') && isset($option['var'][$last])) {
128
-                $val[1] = str_replace('<id>', '<' . $option['var'][$last] . '>', $val[1]);
128
+                $val[1] = str_replace('<id>', '<'.$option['var'][$last].'>', $val[1]);
129 129
             } elseif (strpos($val[1], '<id>') && isset($option['var'][$rule])) {
130
-                $val[1] = str_replace('<id>', '<' . $option['var'][$rule] . '>', $val[1]);
130
+                $val[1] = str_replace('<id>', '<'.$option['var'][$rule].'>', $val[1]);
131 131
             }
132 132
 
133
-            $ruleItem = $this->addRule(trim($prefix . $val[1], '/'), $this->route . '/' . $val[2], $val[0]);
133
+            $ruleItem = $this->addRule(trim($prefix.$val[1], '/'), $this->route.'/'.$val[2], $val[0]);
134 134
 
135 135
             foreach (['model', 'validate', 'middleware'] as $name) {
136 136
                 if (isset($this->$name[$key])) {
Please login to merge, or discard this patch.
src/think/Console.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
 // +----------------------------------------------------------------------
7 7
 // | Author: zhangyajun <[email protected]>
8 8
 // +----------------------------------------------------------------------
9
-declare (strict_types = 1);
9
+declare(strict_types=1);
10 10
 
11 11
 namespace think;
12 12
 
@@ -264,7 +264,7 @@  discard block
 block discarded – undo
264 264
 
265 265
         $command = $this->find($name);
266 266
 
267
-        $this->app->log->info('run: php think ' . $input);
267
+        $this->app->log->info('run: php think '.$input);
268 268
 
269 269
         return $this->doRunCommand($command, $input, $output);
270 270
     }
@@ -469,10 +469,10 @@  discard block
 block discarded – undo
469 469
     public function findNamespace(string $namespace): string
470 470
     {
471 471
         $allNamespaces = $this->getNamespaces();
472
-        $expr          = preg_replace_callback('{([^:]+|)}', function ($matches) {
473
-            return preg_quote($matches[1]) . '[^:]*';
472
+        $expr          = preg_replace_callback('{([^:]+|)}', function($matches) {
473
+            return preg_quote($matches[1]).'[^:]*';
474 474
         }, $namespace);
475
-        $namespaces = preg_grep('{^' . $expr . '}', $allNamespaces);
475
+        $namespaces = preg_grep('{^'.$expr.'}', $allNamespaces);
476 476
 
477 477
         if (empty($namespaces)) {
478 478
             $message = sprintf('There are no commands defined in the "%s" namespace.', $namespace);
@@ -509,13 +509,13 @@  discard block
 block discarded – undo
509 509
     {
510 510
         $allCommands = array_keys($this->commands);
511 511
 
512
-        $expr = preg_replace_callback('{([^:]+|)}', function ($matches) {
513
-            return preg_quote($matches[1]) . '[^:]*';
512
+        $expr = preg_replace_callback('{([^:]+|)}', function($matches) {
513
+            return preg_quote($matches[1]).'[^:]*';
514 514
         }, $name);
515 515
 
516
-        $commands = preg_grep('{^' . $expr . '}', $allCommands);
516
+        $commands = preg_grep('{^'.$expr.'}', $allCommands);
517 517
 
518
-        if (empty($commands) || count(preg_grep('{^' . $expr . '$}', $commands)) < 1) {
518
+        if (empty($commands) || count(preg_grep('{^'.$expr.'$}', $commands)) < 1) {
519 519
             if (false !== $pos = strrpos($name, ':')) {
520 520
                 $this->findNamespace(substr($name, 0, $pos));
521 521
             }
@@ -709,7 +709,7 @@  discard block
 block discarded – undo
709 709
             }
710 710
         }
711 711
 
712
-        $alternatives = array_filter($alternatives, function ($lev) use ($threshold) {
712
+        $alternatives = array_filter($alternatives, function($lev) use ($threshold) {
713 713
             return $lev < 2 * $threshold;
714 714
         });
715 715
         asort($alternatives);
@@ -730,7 +730,7 @@  discard block
 block discarded – undo
730 730
 
731 731
         foreach ($parts as $part) {
732 732
             if (count($namespaces)) {
733
-                $namespaces[] = end($namespaces) . ':' . $part;
733
+                $namespaces[] = end($namespaces).':'.$part;
734 734
             } else {
735 735
                 $namespaces[] = $part;
736 736
             }
Please login to merge, or discard this patch.
src/think/view/driver/Php.php 1 patch
Spacing   +9 added lines, -9 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\view\driver;
14 14
 
@@ -77,14 +77,14 @@  discard block
 block discarded – undo
77 77
 
78 78
         // 模板不存在 抛出异常
79 79
         if (!is_file($template)) {
80
-            throw new TemplateNotFoundException('template not exists:' . $template, $template);
80
+            throw new TemplateNotFoundException('template not exists:'.$template, $template);
81 81
         }
82 82
 
83 83
         $this->template = $template;
84 84
 
85 85
         // 记录视图信息
86 86
         $this->app->log
87
-            ->record('[ VIEW ] ' . $template . ' [ ' . var_export(array_keys($data), true) . ' ]');
87
+            ->record('[ VIEW ] '.$template.' [ '.var_export(array_keys($data), true).' ]');
88 88
 
89 89
         extract($data, EXTR_OVERWRITE);
90 90
 
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
         $this->content = $content;
104 104
 
105 105
         extract($data, EXTR_OVERWRITE);
106
-        eval('?>' . $this->content);
106
+        eval('?>'.$this->content);
107 107
     }
108 108
 
109 109
     /**
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
     private function parseTemplate(string $template): string
116 116
     {
117 117
         if (empty($this->config['view_base'])) {
118
-            $this->config['view_base'] = $this->app->getRootPath() . 'view' . DIRECTORY_SEPARATOR;
118
+            $this->config['view_base'] = $this->app->getRootPath().'view'.DIRECTORY_SEPARATOR;
119 119
         }
120 120
 
121 121
         $request = $this->app->request;
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
         } else {
132 132
             $app = isset($app) ? $app : $request->app();
133 133
             // 基础视图目录
134
-            $path = $this->config['view_base'] . ($app ? $app . DIRECTORY_SEPARATOR : '');
134
+            $path = $this->config['view_base'].($app ? $app.DIRECTORY_SEPARATOR : '');
135 135
         }
136 136
 
137 137
         $depr = $this->config['view_depr'];
@@ -151,16 +151,16 @@  discard block
 block discarded – undo
151 151
                         $template = App::parseName($request->action());
152 152
                     }
153 153
 
154
-                    $template = str_replace('.', DIRECTORY_SEPARATOR, $controller) . $depr . $template;
154
+                    $template = str_replace('.', DIRECTORY_SEPARATOR, $controller).$depr.$template;
155 155
                 } elseif (false === strpos($template, $depr)) {
156
-                    $template = str_replace('.', DIRECTORY_SEPARATOR, $controller) . $depr . $template;
156
+                    $template = str_replace('.', DIRECTORY_SEPARATOR, $controller).$depr.$template;
157 157
                 }
158 158
             }
159 159
         } else {
160 160
             $template = str_replace(['/', ':'], $depr, substr($template, 1));
161 161
         }
162 162
 
163
-        return $path . ltrim($template, '/') . '.' . ltrim($this->config['view_suffix'], '.');
163
+        return $path.ltrim($template, '/').'.'.ltrim($this->config['view_suffix'], '.');
164 164
     }
165 165
 
166 166
     /**
Please login to merge, or discard this patch.
src/think/App.php 1 patch
Spacing   +26 added lines, -26 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
 
@@ -155,13 +155,13 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
574 574
         $name  = str_replace(['/', '.'], '\\', $name);
575 575
         $array = explode('\\', $name);
576 576
         $class = self::parseName(array_pop($array), 1);
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
 block discarded – undo
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
     /**
Please login to merge, or discard this patch.