Completed
Push — 6.0 ( 5714f8...dc2dc3 )
by liu
04:38
created
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 .= '\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
 
Please login to merge, or discard this patch.
src/think/Db.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;
14 14
 
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
     public function getConfig(string $name = '', $default = null)
68 68
     {
69 69
         if (!is_null($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
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
src/think/middleware/TraceDebug.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\middleware;
14 14
 
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
         }
Please login to merge, or discard this patch.