Passed
Pull Request — 6.0 (#2239)
by yun
12:47 queued 06:07
created
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
 
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
     public function getConfig(string $name = null, $default = null)
58 58
     {
59 59
         if (!is_null($name)) {
60
-            return $this->app->config->get('log.' . $name, $default);
60
+            return $this->app->config->get('log.'.$name, $default);
61 61
         }
62 62
 
63 63
         return $this->app->config->get('log');
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
      */
185 185
     public function record($msg, string $type = 'info', array $context = [], bool $lazy = true)
186 186
     {
187
-        $channel = $this->getConfig('type_channel.' . $type);
187
+        $channel = $this->getConfig('type_channel.'.$type);
188 188
 
189 189
         $this->channel($channel)->record($msg, $type, $context, $lazy);
190 190
 
Please login to merge, or discard this patch.
src/think/response/Html.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
 
13 13
 namespace think\response;
14 14
 
Please login to merge, or discard this patch.
src/think/response/Jsonp.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\response;
14 14
 
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
                 throw new \InvalidArgumentException(json_last_error_msg());
61 61
             }
62 62
 
63
-            $data = $handler . '(' . $data . ');';
63
+            $data = $handler.'('.$data.');';
64 64
 
65 65
             return $data;
66 66
         } catch (\Exception $e) {
Please login to merge, or discard this patch.
src/think/response/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\response;
14 14
 
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
     protected function output($data)
42 42
     {
43 43
         if (!$this->isContent && !is_file($data)) {
44
-            throw new Exception('file not exists:' . $data);
44
+            throw new Exception('file not exists:'.$data);
45 45
         }
46 46
 
47 47
         ob_end_clean();
@@ -62,13 +62,13 @@  discard block
 block discarded – undo
62 62
 
63 63
         $this->header['Pragma']                    = 'public';
64 64
         $this->header['Content-Type']              = $mimeType ?: 'application/octet-stream';
65
-        $this->header['Cache-control']             = 'max-age=' . $this->expire;
66
-        $this->header['Content-Disposition']       = ($this->force ? 'attachment; ' : '') . 'filename="' . $name . '"';
65
+        $this->header['Cache-control']             = 'max-age='.$this->expire;
66
+        $this->header['Content-Disposition']       = ($this->force ? 'attachment; ' : '').'filename="'.$name.'"';
67 67
         $this->header['Content-Length']            = $size;
68 68
         $this->header['Content-Transfer-Encoding'] = 'binary';
69
-        $this->header['Expires']                   = gmdate("D, d M Y H:i:s", time() + $this->expire) . ' GMT';
69
+        $this->header['Expires']                   = gmdate("D, d M Y H:i:s", time() + $this->expire).' GMT';
70 70
 
71
-        $this->lastModified(gmdate('D, d M Y H:i:s', time()) . ' GMT');
71
+        $this->lastModified(gmdate('D, d M Y H:i:s', time()).' GMT');
72 72
 
73 73
         return $this->isContent ? $data : file_get_contents($data);
74 74
     }
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
         $this->name = $filename;
151 151
 
152 152
         if ($extension && false === strpos($filename, '.')) {
153
-            $this->name .= '.' . pathinfo($this->data, PATHINFO_EXTENSION);
153
+            $this->name .= '.'.pathinfo($this->data, PATHINFO_EXTENSION);
154 154
         }
155 155
 
156 156
         return $this;
Please login to merge, or discard this patch.
src/think/response/Xml.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\response;
14 14
 
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
             if (0 !== strpos($data, '<?xml')) {
57 57
                 $encoding = $this->options['encoding'];
58 58
                 $xml      = "<?xml version=\"1.0\" encoding=\"{$encoding}\"?>";
59
-                $data     = $xml . $data;
59
+                $data     = $xml.$data;
60 60
             }
61 61
             return $data;
62 62
         }
Please login to merge, or discard this patch.
src/think/event/AppInit.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
 
13 13
 namespace think\event;
14 14
 
Please login to merge, or discard this patch.
src/think/event/RouteLoaded.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\event;
14 14
 
Please login to merge, or discard this patch.
src/think/session/driver/File.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\session\driver;
14 14
 
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
         $this->config = array_merge($this->config, $config);
40 40
 
41 41
         if (empty($this->config['path'])) {
42
-            $this->config['path'] = $app->getRootPath() . 'runtime' . DIRECTORY_SEPARATOR . 'session' . DIRECTORY_SEPARATOR;
42
+            $this->config['path'] = $app->getRootPath().'runtime'.DIRECTORY_SEPARATOR.'session'.DIRECTORY_SEPARATOR;
43 43
         } elseif (substr($this->config['path'], -1) != DIRECTORY_SEPARATOR) {
44 44
             $this->config['path'] .= DIRECTORY_SEPARATOR;
45 45
         }
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
         $lifetime = $this->config['expire'];
77 77
         $now      = time();
78 78
 
79
-        $files = $this->findFiles($this->config['path'], function (SplFileInfo $item) use ($lifetime, $now) {
79
+        $files = $this->findFiles($this->config['path'], function(SplFileInfo $item) use ($lifetime, $now) {
80 80
             return $now - $lifetime > $item->getMTime();
81 81
         });
82 82
 
@@ -118,12 +118,12 @@  discard block
 block discarded – undo
118 118
     {
119 119
         if ($this->config['prefix']) {
120 120
             // 使用子目录
121
-            $name = $this->config['prefix'] . DIRECTORY_SEPARATOR . 'sess_' . $name;
121
+            $name = $this->config['prefix'].DIRECTORY_SEPARATOR.'sess_'.$name;
122 122
         } else {
123
-            $name = 'sess_' . $name;
123
+            $name = 'sess_'.$name;
124 124
         }
125 125
 
126
-        $filename = $this->config['path'] . $name;
126
+        $filename = $this->config['path'].$name;
127 127
         $dir      = dirname($filename);
128 128
 
129 129
         if ($auto && !is_dir($dir)) {
Please login to merge, or discard this patch.
src/think/route/Domain.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\route;
14 14
 
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
             $this->parseUrlParams($array[2], $param);
157 157
         }
158 158
 
159
-        return new CallbackDispatch($request, $this, [$namespace . '\\' . Str::studly($class), $method], $param);
159
+        return new CallbackDispatch($request, $this, [$namespace.'\\'.Str::studly($class), $method], $param);
160 160
     }
161 161
 
162 162
     /**
@@ -177,6 +177,6 @@  discard block
 block discarded – undo
177 177
             $this->parseUrlParams($array[1], $param);
178 178
         }
179 179
 
180
-        return new ControllerDispatch($request, $this, $controller . '/' . $action, $param);
180
+        return new ControllerDispatch($request, $this, $controller.'/'.$action, $param);
181 181
     }
182 182
 }
Please login to merge, or discard this patch.