Completed
Push — 6.0 ( c1d13c...a5b60d )
by liu
07:12
created
src/think/console/Table.php 1 patch
Spacing   +8 added lines, -8 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\console;
14 14
 
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
         }
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 ('' !== $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/console/command/ServiceDiscover.php 1 patch
Spacing   +5 added lines, -5 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\console\command;
14 14
 
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 
27 27
     public function execute(Input $input, Output $output)
28 28
     {
29
-        if (is_file($path = $this->app->getRootPath() . 'vendor/composer/installed.json')) {
29
+        if (is_file($path = $this->app->getRootPath().'vendor/composer/installed.json')) {
30 30
             $packages = json_decode(@file_get_contents($path), true);
31 31
 
32 32
             $services = [];
@@ -36,11 +36,11 @@  discard block
 block discarded – undo
36 36
                 }
37 37
             }
38 38
 
39
-            $header = '// This file is automatically generated at:' . date('Y-m-d H:i:s') . PHP_EOL . 'declare (strict_types = 1);' . PHP_EOL;
39
+            $header = '// This file is automatically generated at:'.date('Y-m-d H:i:s').PHP_EOL.'declare (strict_types = 1);'.PHP_EOL;
40 40
 
41
-            $content = '<?php ' . PHP_EOL . $header . "return " . var_export($services, true) . ';';
41
+            $content = '<?php '.PHP_EOL.$header."return ".var_export($services, true).';';
42 42
 
43
-            file_put_contents($this->app->getRootPath() . 'vendor/services.php', $content);
43
+            file_put_contents($this->app->getRootPath().'vendor/services.php', $content);
44 44
 
45 45
             $output->writeln('<info>Succeed!</info>');
46 46
         }
Please login to merge, or discard this patch.
src/think/initializer/RegisterService.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: yunwuxin <[email protected]>
10 10
 // +----------------------------------------------------------------------
11
-declare (strict_types = 1);
11
+declare(strict_types=1);
12 12
 
13 13
 namespace think\initializer;
14 14
 
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
 
32 32
     public function init(App $app)
33 33
     {
34
-        $file = $app->getRootPath() . 'vendor/services.php';
34
+        $file = $app->getRootPath().'vendor/services.php';
35 35
 
36 36
         $services = $this->services;
37 37
 
Please login to merge, or discard this patch.
src/think/log/ChannelSet.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: yunwuxin <[email protected]>
10 10
 // +----------------------------------------------------------------------
11
-declare (strict_types = 1);
11
+declare(strict_types=1);
12 12
 
13 13
 namespace think\log;
14 14
 
Please login to merge, or discard this patch.
src/think/log/driver/Socket.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: luofei614 <weibo.com/luofei614>
10 10
 // +----------------------------------------------------------------------
11
-declare (strict_types = 1);
11
+declare(strict_types=1);
12 12
 
13 13
 namespace think\log\driver;
14 14
 
@@ -74,9 +74,9 @@  discard block
 block discarded – undo
74 74
         if ($this->config['debug']) {
75 75
 
76 76
             if (isset($_SERVER['HTTP_HOST'])) {
77
-                $current_uri = $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
77
+                $current_uri = $_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
78 78
             } else {
79
-                $current_uri = 'cmd:' . implode(' ', $_SERVER['argv']);
79
+                $current_uri = 'cmd:'.implode(' ', $_SERVER['argv']);
80 80
             }
81 81
 
82 82
             // 基本信息
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
         foreach ($log as $type => $val) {
91 91
             $trace[] = [
92 92
                 'type' => 'groupCollapsed',
93
-                'msg'  => '[ ' . $type . ' ]',
93
+                'msg'  => '[ '.$type.' ]',
94 94
                 'css'  => isset($this->css[$type]) ? $this->css[$type] : '',
95 95
             ];
96 96
 
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
         ];
177 177
 
178 178
         $msg     = @json_encode($logs);
179
-        $address = '/' . $client_id; //将client_id作为地址, server端通过地址判断将日志发布给谁
179
+        $address = '/'.$client_id; //将client_id作为地址, server端通过地址判断将日志发布给谁
180 180
 
181 181
         $this->send($this->config['host'], $msg, $address);
182 182
     }
@@ -249,7 +249,7 @@  discard block
 block discarded – undo
249 249
      */
250 250
     protected function send($host, $message = '', $address = '/')
251 251
     {
252
-        $url = 'http://' . $host . ':' . $this->port . $address;
252
+        $url = 'http://'.$host.':'.$this->port.$address;
253 253
         $ch  = curl_init();
254 254
 
255 255
         curl_setopt($ch, CURLOPT_URL, $url);
Please login to merge, or discard this patch.
src/think/log/Channel.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: yunwuxin <[email protected]>
10 10
 // +----------------------------------------------------------------------
11
-declare (strict_types = 1);
11
+declare(strict_types=1);
12 12
 
13 13
 namespace think\log;
14 14
 
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
         if (is_string($msg) && !empty($context)) {
87 87
             $replace = [];
88 88
             foreach ($context as $key => $val) {
89
-                $replace['{' . $key . '}'] = $val;
89
+                $replace['{'.$key.'}'] = $val;
90 90
             }
91 91
 
92 92
             $msg = strtr($msg, $replace);
Please login to merge, or discard this patch.
src/think/exception/ErrorException.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: 麦当苗儿 <[email protected]> <http://zjzit.cn>
10 10
 // +----------------------------------------------------------------------
11
-declare (strict_types = 1);
11
+declare(strict_types=1);
12 12
 
13 13
 namespace think\exception;
14 14
 
Please login to merge, or discard this patch.
src/think/exception/RouteNotFoundException.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: yunwuxin <[email protected]>
10 10
 // +----------------------------------------------------------------------
11
-declare (strict_types = 1);
11
+declare(strict_types=1);
12 12
 
13 13
 namespace think\exception;
14 14
 
Please login to merge, or discard this patch.