Completed
Pull Request — 6.0 (#1919)
by yun
09:27 queued 04:43
created
src/helper.php 1 patch
Spacing   +13 added lines, -14 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
 //------------------------
14 14
 // ThinkPHP 助手函数
@@ -227,12 +227,12 @@  discard block
 block discarded – undo
227 227
         $output = preg_replace('/\]\=\>\n(\s+)/m', '] => ', $output);
228 228
 
229 229
         if (PHP_SAPI == 'cli') {
230
-            $output = PHP_EOL . $output . PHP_EOL;
230
+            $output = PHP_EOL.$output.PHP_EOL;
231 231
         } else {
232 232
             if (!extension_loaded('xdebug')) {
233 233
                 $output = htmlspecialchars($output, ENT_SUBSTITUTE);
234 234
             }
235
-            $output = '<pre>' . $output . '</pre>';
235
+            $output = '<pre>'.$output.'</pre>';
236 236
         }
237 237
 
238 238
         echo $output;
@@ -311,8 +311,7 @@  discard block
 block discarded – undo
311 311
         }
312 312
 
313 313
         return isset($has) ?
314
-            request()->has($key, $method) :
315
-            request()->$method($key, $default, $filter);
314
+            request()->has($key, $method) : request()->$method($key, $default, $filter);
316 315
     }
317 316
 }
318 317
 
@@ -389,7 +388,7 @@  discard block
 block discarded – undo
389 388
     function parse_name(string $name, int $type = 0, bool $ucfirst = true): string
390 389
     {
391 390
         if ($type) {
392
-            $name = preg_replace_callback('/_([a-zA-Z])/', function ($match) {
391
+            $name = preg_replace_callback('/_([a-zA-Z])/', function($match) {
393 392
                 return strtoupper($match[1]);
394 393
             }, $name);
395 394
 
@@ -494,7 +493,7 @@  discard block
 block discarded – undo
494 493
     {
495 494
         $token = Request::buildToken($name, $type);
496 495
 
497
-        return '<input type="hidden" name="' . $name . '" value="' . $token . '" />';
496
+        return '<input type="hidden" name="'.$name.'" value="'.$token.'" />';
498 497
     }
499 498
 }
500 499
 
@@ -509,7 +508,7 @@  discard block
 block discarded – undo
509 508
     {
510 509
         $token = Request::buildToken($name, $type);
511 510
 
512
-        return '<meta name="csrf-token" content="' . $token . '">';
511
+        return '<meta name="csrf-token" content="'.$token.'">';
513 512
     }
514 513
 }
515 514
 
@@ -651,7 +650,7 @@  discard block
 block discarded – undo
651 650
      */
652 651
     function app_path($path = '')
653 652
     {
654
-        return app()->getAppPath() . ($path ? $path . DIRECTORY_SEPARATOR : $path);
653
+        return app()->getAppPath().($path ? $path.DIRECTORY_SEPARATOR : $path);
655 654
     }
656 655
 }
657 656
 
@@ -664,7 +663,7 @@  discard block
 block discarded – undo
664 663
      */
665 664
     function base_path($path = '')
666 665
     {
667
-        return app()->getBasePath() . ($path ? $path . DIRECTORY_SEPARATOR : $path);
666
+        return app()->getBasePath().($path ? $path.DIRECTORY_SEPARATOR : $path);
668 667
     }
669 668
 }
670 669
 
@@ -677,7 +676,7 @@  discard block
 block discarded – undo
677 676
      */
678 677
     function config_path($path = '')
679 678
     {
680
-        return app()->getConfigPath() . ($path ? $path . DIRECTORY_SEPARATOR : $path);
679
+        return app()->getConfigPath().($path ? $path.DIRECTORY_SEPARATOR : $path);
681 680
     }
682 681
 }
683 682
 
@@ -690,7 +689,7 @@  discard block
 block discarded – undo
690 689
      */
691 690
     function public_path($path = '')
692 691
     {
693
-        return app()->getRootPath() . ($path ? ltrim($path, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR : $path);
692
+        return app()->getRootPath().($path ? ltrim($path, DIRECTORY_SEPARATOR).DIRECTORY_SEPARATOR : $path);
694 693
     }
695 694
 }
696 695
 
@@ -703,7 +702,7 @@  discard block
 block discarded – undo
703 702
      */
704 703
     function runtime_path($path = '')
705 704
     {
706
-        return app()->getRuntimePath() . ($path ? $path . DIRECTORY_SEPARATOR : $path);
705
+        return app()->getRuntimePath().($path ? $path.DIRECTORY_SEPARATOR : $path);
707 706
     }
708 707
 }
709 708
 
@@ -716,6 +715,6 @@  discard block
 block discarded – undo
716 715
      */
717 716
     function root_path($path = '')
718 717
     {
719
-        return app()->getRootPath() . ($path ? $path . DIRECTORY_SEPARATOR : $path);
718
+        return app()->getRootPath().($path ? $path.DIRECTORY_SEPARATOR : $path);
720 719
     }
721 720
 }
Please login to merge, or discard this patch.
src/think/route/dispatch/Controller.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\dispatch;
14 14
 
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 
54 54
         if (strpos($controller, '.')) {
55 55
             $pos              = strrpos($controller, '.');
56
-            $this->controller = substr($controller, 0, $pos) . App::parseName(substr($controller, $pos), 1);
56
+            $this->controller = substr($controller, 0, $pos).App::parseName(substr($controller, $pos), 1);
57 57
         } else {
58 58
             $this->controller = App::parseName($controller, 1);
59 59
         }
@@ -73,15 +73,15 @@  discard block
 block discarded – undo
73 73
             // 实例化控制器
74 74
             $instance = $this->controller($this->controller);
75 75
         } catch (ClassNotFoundException $e) {
76
-            throw new HttpException(404, 'controller not exists:' . $e->getClass());
76
+            throw new HttpException(404, 'controller not exists:'.$e->getClass());
77 77
         }
78 78
 
79 79
         // 注册控制器中间件
80 80
         $this->registerControllerMiddleware($instance);
81 81
 
82
-        $this->app->middleware->controller(function (Request $request, $next) use ($instance) {
82
+        $this->app->middleware->controller(function(Request $request, $next) use ($instance) {
83 83
             // 获取当前操作名
84
-            $action = $this->actionName . $this->rule->config('action_suffix');
84
+            $action = $this->actionName.$this->rule->config('action_suffix');
85 85
 
86 86
             if (is_callable([$instance, $action])) {
87 87
                 $vars = $this->request->param();
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
                 }
98 98
             } else {
99 99
                 // 操作不存在
100
-                throw new HttpException(404, 'method not exists:' . get_class($instance) . '->' . $action . '()');
100
+                throw new HttpException(404, 'method not exists:'.get_class($instance).'->'.$action.'()');
101 101
             }
102 102
 
103 103
             $data = $this->app->invokeReflectMethod($instance, $reflect, $vars);
@@ -126,11 +126,11 @@  discard block
 block discarded – undo
126 126
 
127 127
             foreach ($middlewares as $key => $val) {
128 128
                 if (!is_int($key)) {
129
-                    if (isset($val['only']) && !in_array($this->request->action(true), array_map(function ($item) {
129
+                    if (isset($val['only']) && !in_array($this->request->action(true), array_map(function($item) {
130 130
                         return strtolower($item);
131 131
                     }, $val['only']))) {
132 132
                         continue;
133
-                    } elseif (isset($val['except']) && in_array($this->request->action(true), array_map(function ($item) {
133
+                    } elseif (isset($val['except']) && in_array($this->request->action(true), array_map(function($item) {
134 134
                         return strtolower($item);
135 135
                     }, $val['except']))) {
136 136
                         continue;
@@ -158,14 +158,14 @@  discard block
 block discarded – undo
158 158
         $controllerLayer = $this->rule->config('controller_layer') ?: 'controller';
159 159
         $emptyController = $this->rule->config('empty_controller') ?: 'Error';
160 160
 
161
-        $class = $this->app->parseClass($controllerLayer, $name . $suffix);
161
+        $class = $this->app->parseClass($controllerLayer, $name.$suffix);
162 162
 
163 163
         if (class_exists($class)) {
164 164
             return $this->app->make($class, [], true);
165
-        } elseif ($emptyController && class_exists($emptyClass = $this->app->parseClass($controllerLayer, $emptyController . $suffix))) {
165
+        } elseif ($emptyController && class_exists($emptyClass = $this->app->parseClass($controllerLayer, $emptyController.$suffix))) {
166 166
             return $this->app->make($emptyClass, [], true);
167 167
         }
168 168
 
169
-        throw new ClassNotFoundException('class not exists:' . $class, $class);
169
+        throw new ClassNotFoundException('class not exists:'.$class, $class);
170 170
     }
171 171
 }
Please login to merge, or discard this patch.
src/think/exception/InvalidArgumentException.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
 namespace think\exception;
13 13
 
14 14
 use Psr\Cache\InvalidArgumentException as Psr6CacheInvalidArgumentInterface;
Please login to merge, or discard this patch.
src/think/log/Channel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@
 block discarded – undo
120 120
         if (is_string($msg) && !empty($context)) {
121 121
             $replace = [];
122 122
             foreach ($context as $key => $val) {
123
-                $replace['{' . $key . '}'] = $val;
123
+                $replace['{'.$key.'}'] = $val;
124 124
             }
125 125
 
126 126
             $msg = strtr($msg, $replace);
Please login to merge, or discard this patch.
src/think/log/driver/Socket.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -73,9 +73,9 @@  discard block
 block discarded – undo
73 73
         if ($this->config['debug']) {
74 74
 
75 75
             if (isset($_SERVER['HTTP_HOST'])) {
76
-                $current_uri = $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
76
+                $current_uri = $_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
77 77
             } else {
78
-                $current_uri = 'cmd:' . implode(' ', $_SERVER['argv']);
78
+                $current_uri = 'cmd:'.implode(' ', $_SERVER['argv']);
79 79
             }
80 80
 
81 81
             // 基本信息
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
         foreach ($log as $type => $val) {
90 90
             $trace[] = [
91 91
                 'type' => 'groupCollapsed',
92
-                'msg'  => '[ ' . $type . ' ]',
92
+                'msg'  => '[ '.$type.' ]',
93 93
                 'css'  => isset($this->css[$type]) ? $this->css[$type] : '',
94 94
             ];
95 95
 
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
         ];
176 176
 
177 177
         $msg     = @json_encode($logs);
178
-        $address = '/' . $client_id; //将client_id作为地址, server端通过地址判断将日志发布给谁
178
+        $address = '/'.$client_id; //将client_id作为地址, server端通过地址判断将日志发布给谁
179 179
 
180 180
         $this->send($this->config['host'], $msg, $address);
181 181
     }
@@ -248,7 +248,7 @@  discard block
 block discarded – undo
248 248
      */
249 249
     protected function send($host, $message = '', $address = '/')
250 250
     {
251
-        $url = 'http://' . $host . ':' . $this->port . $address;
251
+        $url = 'http://'.$host.':'.$this->port.$address;
252 252
         $ch  = curl_init();
253 253
 
254 254
         curl_setopt($ch, CURLOPT_URL, $url);
Please login to merge, or discard this patch.
src/think/Log.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;
14 14
 
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
     public function getConfig(string $name = null, $default = null)
57 57
     {
58 58
         if (!is_null($name)) {
59
-            return $this->app->config->get('log.' . $name, $default);
59
+            return $this->app->config->get('log.'.$name, $default);
60 60
         }
61 61
 
62 62
         return $this->app->config->get('log');
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
      */
181 181
     public function record($msg, string $type = 'info', array $context = [], bool $lazy = true)
182 182
     {
183
-        $channel = $this->getConfig('type_channel.' . $type);
183
+        $channel = $this->getConfig('type_channel.'.$type);
184 184
 
185 185
         $this->channel($channel)->record($msg, $type, $context, $lazy);
186 186
 
Please login to merge, or discard this patch.
src/think/Manager.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
 
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
     protected function resolveClass(string $type): string
94 94
     {
95 95
         if ($this->namespace || false !== strpos($type, '\\')) {
96
-            $class = false !== strpos($type, '\\') ? $type : $this->namespace . Str::studly($type);
96
+            $class = false !== strpos($type, '\\') ? $type : $this->namespace.Str::studly($type);
97 97
 
98 98
             if (class_exists($class)) {
99 99
                 return $class;
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
         $type   = $this->resolveType($name);
116 116
         $config = $this->resolveConfig($name);
117 117
 
118
-        $method = 'create' . Str::studly($type) . 'Driver';
118
+        $method = 'create'.Str::studly($type).'Driver';
119 119
 
120 120
         if (method_exists($this, $method)) {
121 121
             return $this->$method($config);
Please login to merge, or discard this patch.
src/think/log/driver/File.php 1 patch
Spacing   +14 added lines, -15 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\log\driver;
14 14
 
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
         }
49 49
 
50 50
         if (empty($this->config['path'])) {
51
-            $this->config['path'] = $app->getRuntimePath() . 'log';
51
+            $this->config['path'] = $app->getRuntimePath().'log';
52 52
         }
53 53
 
54 54
         if (substr($this->config['path'], -1) != DIRECTORY_SEPARATOR) {
@@ -82,8 +82,7 @@  discard block
 block discarded – undo
82 82
                 }
83 83
 
84 84
                 $message[] = $this->config['json'] ?
85
-                    json_encode(['time' => $time, 'type' => $type, 'msg' => $msg], $this->config['json_options']) :
86
-                    sprintf($this->config['format'], $time, $type, $msg);
85
+                    json_encode(['time' => $time, 'type' => $type, 'msg' => $msg], $this->config['json_options']) : sprintf($this->config['format'], $time, $type, $msg);
87 86
             }
88 87
 
89 88
             if (true === $this->config['apart_level'] || in_array($type, $this->config['apart_level'])) {
@@ -121,7 +120,7 @@  discard block
 block discarded – undo
121 120
             $info[$type] = is_array($msg) ? implode(PHP_EOL, $msg) : $msg;
122 121
         }
123 122
 
124
-        $message = implode(PHP_EOL, $info) . PHP_EOL;
123
+        $message = implode(PHP_EOL, $info).PHP_EOL;
125 124
 
126 125
         return error_log($message, 3, $destination);
127 126
     }
@@ -135,7 +134,7 @@  discard block
 block discarded – undo
135 134
     {
136 135
 
137 136
         if ($this->config['max_files']) {
138
-            $files = glob($this->config['path'] . '*.log');
137
+            $files = glob($this->config['path'].'*.log');
139 138
 
140 139
             try {
141 140
                 if (count($files) > $this->config['max_files']) {
@@ -148,16 +147,16 @@  discard block
 block discarded – undo
148 147
 
149 148
         if ($this->config['single']) {
150 149
             $name        = is_string($this->config['single']) ? $this->config['single'] : 'single';
151
-            $destination = $this->config['path'] . $name . '.log';
150
+            $destination = $this->config['path'].$name.'.log';
152 151
         } else {
153 152
 
154 153
             if ($this->config['max_files']) {
155
-                $filename = date('Ymd') . '.log';
154
+                $filename = date('Ymd').'.log';
156 155
             } else {
157
-                $filename = date('Ym') . DIRECTORY_SEPARATOR . date('d') . '.log';
156
+                $filename = date('Ym').DIRECTORY_SEPARATOR.date('d').'.log';
158 157
             }
159 158
 
160
-            $destination = $this->config['path'] . $filename;
159
+            $destination = $this->config['path'].$filename;
161 160
         }
162 161
 
163 162
         return $destination;
@@ -176,14 +175,14 @@  discard block
 block discarded – undo
176 175
         if ($this->config['single']) {
177 176
             $name = is_string($this->config['single']) ? $this->config['single'] : 'single';
178 177
 
179
-            $name .= '_' . $type;
178
+            $name .= '_'.$type;
180 179
         } elseif ($this->config['max_files']) {
181
-            $name = date('Ymd') . '_' . $type;
180
+            $name = date('Ymd').'_'.$type;
182 181
         } else {
183
-            $name = date('d') . '_' . $type;
182
+            $name = date('d').'_'.$type;
184 183
         }
185 184
 
186
-        return $path . DIRECTORY_SEPARATOR . $name . '.log';
185
+        return $path.DIRECTORY_SEPARATOR.$name.'.log';
187 186
     }
188 187
 
189 188
     /**
@@ -196,7 +195,7 @@  discard block
 block discarded – undo
196 195
     {
197 196
         if (is_file($destination) && floor($this->config['file_size']) <= filesize($destination)) {
198 197
             try {
199
-                rename($destination, dirname($destination) . DIRECTORY_SEPARATOR . time() . '-' . basename($destination));
198
+                rename($destination, dirname($destination).DIRECTORY_SEPARATOR.time().'-'.basename($destination));
200 199
             } catch (\Exception $e) {
201 200
                 //
202 201
             }
Please login to merge, or discard this patch.
src/think/Cache.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;
14 14
 
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
     public function getConfig(string $name = null, $default = null)
47 47
     {
48 48
         if (!is_null($name)) {
49
-            return $this->app->config->get('cache.' . $name, $default);
49
+            return $this->app->config->get('cache.'.$name, $default);
50 50
         }
51 51
 
52 52
         return $this->app->config->get('cache');
Please login to merge, or discard this patch.