Completed
Pull Request — 6.0 (#2072)
by nhzex
05:15
created
src/think/cache/driver/File.php 1 patch
Spacing   +7 added lines, -7 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\cache\driver;
14 14
 
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
         }
49 49
 
50 50
         if (empty($this->options['path'])) {
51
-            $this->options['path'] = $app->getRuntimePath() . 'cache';
51
+            $this->options['path'] = $app->getRuntimePath().'cache';
52 52
         }
53 53
 
54 54
         if (substr($this->options['path'], -1) != DIRECTORY_SEPARATOR) {
@@ -68,14 +68,14 @@  discard block
 block discarded – undo
68 68
 
69 69
         if ($this->options['cache_subdir']) {
70 70
             // 使用子目录
71
-            $name = substr($name, 0, 2) . DIRECTORY_SEPARATOR . substr($name, 2);
71
+            $name = substr($name, 0, 2).DIRECTORY_SEPARATOR.substr($name, 2);
72 72
         }
73 73
 
74 74
         if ($this->options['prefix']) {
75
-            $name = $this->options['prefix'] . DIRECTORY_SEPARATOR . $name;
75
+            $name = $this->options['prefix'].DIRECTORY_SEPARATOR.$name;
76 76
         }
77 77
 
78
-        return $this->options['path'] . $name . '.php';
78
+        return $this->options['path'].$name.'.php';
79 79
     }
80 80
 
81 81
     /**
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
             $data = gzcompress($data, 3);
182 182
         }
183 183
 
184
-        $data   = "<?php\n//" . sprintf('%012d', $expire) . "\n exit();?>\n" . $data;
184
+        $data   = "<?php\n//".sprintf('%012d', $expire)."\n exit();?>\n".$data;
185 185
         $result = file_put_contents($filename, $data);
186 186
 
187 187
         if ($result) {
@@ -250,7 +250,7 @@  discard block
 block discarded – undo
250 250
     {
251 251
         $this->writeTimes++;
252 252
 
253
-        $dirname = $this->options['path'] . $this->options['prefix'];
253
+        $dirname = $this->options['path'].$this->options['prefix'];
254 254
 
255 255
         $this->rmdir($dirname);
256 256
 
Please login to merge, or discard this patch.
tests/CacheTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -118,10 +118,10 @@
 block discarded – undo
118 118
         $redis->shouldReceive("del")->once()->with('baz')->andReturnTrue();
119 119
         $redis->shouldReceive("flushDB")->once()->andReturnTrue();
120 120
         $redis->shouldReceive("set")->once()->with('bar', \Opis\Closure\serialize('foobar'))->andReturnTrue();
121
-        $redis->shouldReceive("sAdd")->once()->with('tag:' . md5('foo'), 'bar')->andReturnTrue();
122
-        $redis->shouldReceive("sMembers")->once()->with('tag:' . md5('foo'))->andReturn(['bar']);
121
+        $redis->shouldReceive("sAdd")->once()->with('tag:'.md5('foo'), 'bar')->andReturnTrue();
122
+        $redis->shouldReceive("sMembers")->once()->with('tag:'.md5('foo'))->andReturn(['bar']);
123 123
         $redis->shouldReceive("del")->once()->with(['bar'])->andReturnTrue();
124
-        $redis->shouldReceive("del")->once()->with('tag:' . md5('foo'))->andReturnTrue();
124
+        $redis->shouldReceive("del")->once()->with('tag:'.md5('foo'))->andReturnTrue();
125 125
 
126 126
         $this->cache->set('foo', 5);
127 127
         $this->cache->inc('foo');
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 = Str::studly(array_pop($array));
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.
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/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/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.