@@ -8,7 +8,7 @@ discard block |
||
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\filesystem; |
14 | 14 | |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | public function putFileAs(string $path, File $file, string $name, array $options = []) |
116 | 116 | { |
117 | 117 | $stream = fopen($file->getRealPath(), 'r'); |
118 | - $path = trim($path . '/' . $name, '/'); |
|
118 | + $path = trim($path.'/'.$name, '/'); |
|
119 | 119 | |
120 | 120 | $result = $this->putStream($path, $stream, $options); |
121 | 121 |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | |
48 | 48 | $route = m::mock(Route::class); |
49 | 49 | |
50 | - $route->shouldReceive('dispatch')->withArgs(function ($req, $withRoute) use ($request) { |
|
50 | + $route->shouldReceive('dispatch')->withArgs(function($req, $withRoute) use ($request) { |
|
51 | 51 | if ($withRoute) { |
52 | 52 | $withRoute(); |
53 | 53 | } |
@@ -77,8 +77,8 @@ discard block |
||
77 | 77 | ], |
78 | 78 | ]); |
79 | 79 | |
80 | - $this->app->shouldReceive('getBasePath')->andReturn($root->getChild('app')->url() . DIRECTORY_SEPARATOR); |
|
81 | - $this->app->shouldReceive('getRootPath')->andReturn($root->url() . DIRECTORY_SEPARATOR); |
|
80 | + $this->app->shouldReceive('getBasePath')->andReturn($root->getChild('app')->url().DIRECTORY_SEPARATOR); |
|
81 | + $this->app->shouldReceive('getRootPath')->andReturn($root->url().DIRECTORY_SEPARATOR); |
|
82 | 82 | |
83 | 83 | $request = m::mock(Request::class)->makePartial(); |
84 | 84 | $response = m::mock(Response::class)->makePartial(); |
@@ -8,7 +8,7 @@ discard block |
||
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 | |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | { |
53 | 53 | $this->app = $app; |
54 | 54 | |
55 | - $this->routePath = $this->app->getRootPath() . 'route' . DIRECTORY_SEPARATOR; |
|
55 | + $this->routePath = $this->app->getRootPath().'route'.DIRECTORY_SEPARATOR; |
|
56 | 56 | } |
57 | 57 | |
58 | 58 | /** |
@@ -199,14 +199,14 @@ discard block |
||
199 | 199 | |
200 | 200 | return $this->app->middleware->pipeline() |
201 | 201 | ->send($request) |
202 | - ->then(function ($request) { |
|
202 | + ->then(function($request) { |
|
203 | 203 | return $this->dispatchToRoute($request); |
204 | 204 | }); |
205 | 205 | } |
206 | 206 | |
207 | 207 | protected function dispatchToRoute($request) |
208 | 208 | { |
209 | - $withRoute = $this->app->config->get('app.with_route', true) ? function () { |
|
209 | + $withRoute = $this->app->config->get('app.with_route', true) ? function() { |
|
210 | 210 | $this->loadRoutes(); |
211 | 211 | } : null; |
212 | 212 | |
@@ -218,8 +218,8 @@ discard block |
||
218 | 218 | */ |
219 | 219 | protected function loadMiddleware(): void |
220 | 220 | { |
221 | - if (is_file($this->app->getBasePath() . 'middleware.php')) { |
|
222 | - $this->app->middleware->import(include $this->app->getBasePath() . 'middleware.php'); |
|
221 | + if (is_file($this->app->getBasePath().'middleware.php')) { |
|
222 | + $this->app->middleware->import(include $this->app->getBasePath().'middleware.php'); |
|
223 | 223 | } |
224 | 224 | } |
225 | 225 | |
@@ -234,7 +234,7 @@ discard block |
||
234 | 234 | $routePath = $this->getRoutePath(); |
235 | 235 | |
236 | 236 | if (is_dir($routePath)) { |
237 | - $files = glob($routePath . '*.php'); |
|
237 | + $files = glob($routePath.'*.php'); |
|
238 | 238 | foreach ($files as $file) { |
239 | 239 | include $file; |
240 | 240 | } |
@@ -8,7 +8,7 @@ discard block |
||
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 | |
@@ -404,7 +404,7 @@ discard block |
||
404 | 404 | ]; |
405 | 405 | $replacements = [ |
406 | 406 | $name, |
407 | - $_SERVER['PHP_SELF'] . ' ' . $name, |
|
407 | + $_SERVER['PHP_SELF'].' '.$name, |
|
408 | 408 | ]; |
409 | 409 | |
410 | 410 | return str_replace($placeholders, $replacements, $this->getHelp()); |
@@ -48,21 +48,21 @@ discard block |
||
48 | 48 | $tables = $this->app->db->getConnection()->getTables($dbName); |
49 | 49 | } else { |
50 | 50 | if ($dir) { |
51 | - $appPath = $this->app->getBasePath() . $dir . DIRECTORY_SEPARATOR; |
|
52 | - $namespace = 'app\\' . $dir; |
|
51 | + $appPath = $this->app->getBasePath().$dir.DIRECTORY_SEPARATOR; |
|
52 | + $namespace = 'app\\'.$dir; |
|
53 | 53 | } else { |
54 | 54 | $appPath = $this->app->getBasePath(); |
55 | 55 | $namespace = 'app'; |
56 | 56 | } |
57 | 57 | |
58 | - $path = $appPath . 'model'; |
|
58 | + $path = $appPath.'model'; |
|
59 | 59 | $list = is_dir($path) ? scandir($path) : []; |
60 | 60 | |
61 | 61 | foreach ($list as $file) { |
62 | 62 | if (0 === strpos($file, '.')) { |
63 | 63 | continue; |
64 | 64 | } |
65 | - $class = '\\' . $namespace . '\\model\\' . pathinfo($file, PATHINFO_FILENAME); |
|
65 | + $class = '\\'.$namespace.'\\model\\'.pathinfo($file, PATHINFO_FILENAME); |
|
66 | 66 | $this->buildModelSchema($class); |
67 | 67 | } |
68 | 68 | |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | return; |
71 | 71 | } |
72 | 72 | |
73 | - $db = isset($dbName) ? $dbName . '.' : ''; |
|
73 | + $db = isset($dbName) ? $dbName.'.' : ''; |
|
74 | 74 | $this->buildDataBaseSchema($schemaPath, $tables, $db); |
75 | 75 | |
76 | 76 | $output->writeln('<info>Succeed!</info>'); |
@@ -89,27 +89,27 @@ discard block |
||
89 | 89 | if (!is_dir($path)) { |
90 | 90 | mkdir($path, 0755, true); |
91 | 91 | } |
92 | - $content = '<?php ' . PHP_EOL . 'return '; |
|
92 | + $content = '<?php '.PHP_EOL.'return '; |
|
93 | 93 | $info = $model->db()->getConnection()->getTableFieldsInfo($table); |
94 | - $content .= var_export($info, true) . ';'; |
|
94 | + $content .= var_export($info, true).';'; |
|
95 | 95 | |
96 | - file_put_contents($path . $dbName . '.' . $table . '.php', $content); |
|
96 | + file_put_contents($path.$dbName.'.'.$table.'.php', $content); |
|
97 | 97 | } |
98 | 98 | } |
99 | 99 | |
100 | 100 | protected function buildDataBaseSchema(string $path, array $tables, string $db): void |
101 | 101 | { |
102 | 102 | if ('' == $db) { |
103 | - $dbName = $this->app->db->getConnection()->getConfig('database') . '.'; |
|
103 | + $dbName = $this->app->db->getConnection()->getConfig('database').'.'; |
|
104 | 104 | } else { |
105 | 105 | $dbName = $db; |
106 | 106 | } |
107 | 107 | |
108 | 108 | foreach ($tables as $table) { |
109 | - $content = '<?php ' . PHP_EOL . 'return '; |
|
110 | - $info = $this->app->db->getConnection()->getTableFieldsInfo($db . $table); |
|
111 | - $content .= var_export($info, true) . ';'; |
|
112 | - file_put_contents($path . $dbName . $table . '.php', $content); |
|
109 | + $content = '<?php '.PHP_EOL.'return '; |
|
110 | + $info = $this->app->db->getConnection()->getTableFieldsInfo($db.$table); |
|
111 | + $content .= var_export($info, true).';'; |
|
112 | + file_put_contents($path.$dbName.$table.'.php', $content); |
|
113 | 113 | } |
114 | 114 | } |
115 | 115 | } |
@@ -29,9 +29,9 @@ discard block |
||
29 | 29 | { |
30 | 30 | $dir = $input->getArgument('dir') ?: ''; |
31 | 31 | |
32 | - $path = $this->app->getRootPath() . 'runtime' . DIRECTORY_SEPARATOR . ($dir ? $dir . DIRECTORY_SEPARATOR : ''); |
|
32 | + $path = $this->app->getRootPath().'runtime'.DIRECTORY_SEPARATOR.($dir ? $dir.DIRECTORY_SEPARATOR : ''); |
|
33 | 33 | |
34 | - $filename = $path . 'route.php'; |
|
34 | + $filename = $path.'route.php'; |
|
35 | 35 | if (is_file($filename)) { |
36 | 36 | unlink($filename); |
37 | 37 | } |
@@ -46,21 +46,21 @@ discard block |
||
46 | 46 | $this->app->route->lazy(false); |
47 | 47 | |
48 | 48 | // 路由检测 |
49 | - $path = $this->app->getRootPath() . 'route' . DIRECTORY_SEPARATOR . ($dir ? $dir . DIRECTORY_SEPARATOR : ''); |
|
49 | + $path = $this->app->getRootPath().'route'.DIRECTORY_SEPARATOR.($dir ? $dir.DIRECTORY_SEPARATOR : ''); |
|
50 | 50 | |
51 | 51 | $files = is_dir($path) ? scandir($path) : []; |
52 | 52 | |
53 | 53 | foreach ($files as $file) { |
54 | 54 | if (strpos($file, '.php')) { |
55 | - include $path . $file; |
|
55 | + include $path.$file; |
|
56 | 56 | } |
57 | 57 | } |
58 | 58 | |
59 | 59 | //触发路由载入完成事件 |
60 | 60 | $this->app->event->trigger(RouteLoaded::class); |
61 | 61 | |
62 | - $content = '<?php ' . PHP_EOL . 'return '; |
|
63 | - $content .= '\Opis\Closure\unserialize(\'' . \Opis\Closure\serialize($this->app->route->getName()) . '\');'; |
|
62 | + $content = '<?php '.PHP_EOL.'return '; |
|
63 | + $content .= '\Opis\Closure\unserialize(\''.\Opis\Closure\serialize($this->app->route->getName()).'\');'; |
|
64 | 64 | return $content; |
65 | 65 | } |
66 | 66 |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | { |
43 | 43 | $dir = $input->getArgument('dir') ?: ''; |
44 | 44 | |
45 | - $filename = $this->app->getRootPath() . 'runtime' . DIRECTORY_SEPARATOR . ($dir ? $dir . DIRECTORY_SEPARATOR : '') . 'route_list.php'; |
|
45 | + $filename = $this->app->getRootPath().'runtime'.DIRECTORY_SEPARATOR.($dir ? $dir.DIRECTORY_SEPARATOR : '').'route_list.php'; |
|
46 | 46 | |
47 | 47 | if (is_file($filename)) { |
48 | 48 | unlink($filename); |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | } |
52 | 52 | |
53 | 53 | $content = $this->getRouteList($dir); |
54 | - file_put_contents($filename, 'Route List' . PHP_EOL . $content); |
|
54 | + file_put_contents($filename, 'Route List'.PHP_EOL.$content); |
|
55 | 55 | } |
56 | 56 | |
57 | 57 | protected function getRouteList(string $dir = null): string |
@@ -60,16 +60,16 @@ discard block |
||
60 | 60 | $this->app->route->clear(); |
61 | 61 | |
62 | 62 | if ($dir) { |
63 | - $path = $this->app->getRootPath() . 'route' . DIRECTORY_SEPARATOR . $dir . DIRECTORY_SEPARATOR; |
|
63 | + $path = $this->app->getRootPath().'route'.DIRECTORY_SEPARATOR.$dir.DIRECTORY_SEPARATOR; |
|
64 | 64 | } else { |
65 | - $path = $this->app->getRootPath() . 'route' . DIRECTORY_SEPARATOR; |
|
65 | + $path = $this->app->getRootPath().'route'.DIRECTORY_SEPARATOR; |
|
66 | 66 | } |
67 | 67 | |
68 | 68 | $files = is_dir($path) ? scandir($path) : []; |
69 | 69 | |
70 | 70 | foreach ($files as $file) { |
71 | 71 | if (strpos($file, '.php')) { |
72 | - include $path . $file; |
|
72 | + include $path.$file; |
|
73 | 73 | } |
74 | 74 | } |
75 | 75 | |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | $sort = $this->sortBy[$sort]; |
109 | 109 | } |
110 | 110 | |
111 | - uasort($rows, function ($a, $b) use ($sort) { |
|
111 | + uasort($rows, function($a, $b) use ($sort) { |
|
112 | 112 | $itemA = $a[$sort] ?? null; |
113 | 113 | $itemB = $b[$sort] ?? null; |
114 | 114 |
@@ -64,9 +64,9 @@ discard block |
||
64 | 64 | |
65 | 65 | $this->middleware->add('foo'); |
66 | 66 | $this->assertEquals(3, count($this->middleware->all())); |
67 | - $this->middleware->add(function () { |
|
67 | + $this->middleware->add(function() { |
|
68 | 68 | }); |
69 | - $this->middleware->add(function () { |
|
69 | + $this->middleware->add(function() { |
|
70 | 70 | }); |
71 | 71 | $this->assertEquals(5, count($this->middleware->all())); |
72 | 72 | } |
@@ -85,10 +85,10 @@ discard block |
||
85 | 85 | $handle->shouldReceive('report')->with($e)->andReturnNull(); |
86 | 86 | $handle->shouldReceive('render')->with($request, $e)->andReturn($response); |
87 | 87 | |
88 | - $foo->shouldReceive('handle')->once()->andReturnUsing(function ($request, $next) { |
|
88 | + $foo->shouldReceive('handle')->once()->andReturnUsing(function($request, $next) { |
|
89 | 89 | return $next($request); |
90 | 90 | }); |
91 | - $bar->shouldReceive('handle')->once()->andReturnUsing(function ($request, $next) use ($e) { |
|
91 | + $bar->shouldReceive('handle')->once()->andReturnUsing(function($request, $next) use ($e) { |
|
92 | 92 | $next($request); |
93 | 93 | throw $e; |
94 | 94 | }); |
@@ -99,13 +99,13 @@ discard block |
||
99 | 99 | |
100 | 100 | $this->config->shouldReceive('get')->once()->with('middleware.priority', [])->andReturn(['FooMiddleware', 'BarMiddleware']); |
101 | 101 | |
102 | - $this->middleware->import([function ($request, $next) { |
|
102 | + $this->middleware->import([function($request, $next) { |
|
103 | 103 | return $next($request); |
104 | 104 | }, 'BarMiddleware', 'FooMiddleware']); |
105 | 105 | |
106 | 106 | $this->assertInstanceOf(Pipeline::class, $pipeline = $this->middleware->pipeline()); |
107 | 107 | |
108 | - $pipeline->send($request)->then(function ($request) use ($e, $response) { |
|
108 | + $pipeline->send($request)->then(function($request) use ($e, $response) { |
|
109 | 109 | throw $e; |
110 | 110 | }); |
111 | 111 |
@@ -8,7 +8,7 @@ discard block |
||
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 | |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | } |
74 | 74 | |
75 | 75 | if ($this->app->config->get('log.record_trace')) { |
76 | - $log .= PHP_EOL . $exception->getTraceAsString(); |
|
76 | + $log .= PHP_EOL.$exception->getTraceAsString(); |
|
77 | 77 | } |
78 | 78 | |
79 | 79 | $this->app->log->record($log, 'error'); |
@@ -213,7 +213,7 @@ discard block |
||
213 | 213 | ob_start(); |
214 | 214 | $data = $this->convertExceptionToArray($exception); |
215 | 215 | extract($data); |
216 | - include $this->app->config->get('app.exception_tmpl') ?: __DIR__ . '/../../tpl/think_exception.tpl'; |
|
216 | + include $this->app->config->get('app.exception_tmpl') ?: __DIR__.'/../../tpl/think_exception.tpl'; |
|
217 | 217 | |
218 | 218 | return ob_get_clean(); |
219 | 219 | } |
@@ -255,10 +255,10 @@ discard block |
||
255 | 255 | |
256 | 256 | if (strpos($message, ':')) { |
257 | 257 | $name = strstr($message, ':', true); |
258 | - $message = $lang->has($name) ? $lang->get($name) . strstr($message, ':') : $message; |
|
258 | + $message = $lang->has($name) ? $lang->get($name).strstr($message, ':') : $message; |
|
259 | 259 | } elseif (strpos($message, ',')) { |
260 | 260 | $name = strstr($message, ',', true); |
261 | - $message = $lang->has($name) ? $lang->get($name) . ':' . substr(strstr($message, ','), 1) : $message; |
|
261 | + $message = $lang->has($name) ? $lang->get($name).':'.substr(strstr($message, ','), 1) : $message; |
|
262 | 262 | } elseif ($lang->has($message)) { |
263 | 263 | $message = $lang->get($message); |
264 | 264 | } |