@@ -8,7 +8,7 @@ |
||
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\contract; |
14 | 14 |
@@ -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 | |
@@ -175,9 +175,9 @@ discard block |
||
175 | 175 | $this->cache = $this->app->cache->store(true === $this->config['route_check_cache'] ? '' : $this->config['route_check_cache']); |
176 | 176 | } |
177 | 177 | |
178 | - if (is_file($this->app->getRuntimePath() . 'route.php')) { |
|
178 | + if (is_file($this->app->getRuntimePath().'route.php')) { |
|
179 | 179 | // 读取路由映射文件 |
180 | - $this->import(include $this->app->getRuntimePath() . 'route.php'); |
|
180 | + $this->import(include $this->app->getRuntimePath().'route.php'); |
|
181 | 181 | } |
182 | 182 | } |
183 | 183 | |
@@ -390,13 +390,13 @@ discard block |
||
390 | 390 | if (is_null($domain)) { |
391 | 391 | $domain = $this->host; |
392 | 392 | } elseif (false === strpos($domain, '.')) { |
393 | - $domain .= '.' . $this->request->rootDomain(); |
|
393 | + $domain .= '.'.$this->request->rootDomain(); |
|
394 | 394 | } |
395 | 395 | |
396 | 396 | $subDomain = $this->request->subDomain(); |
397 | 397 | |
398 | 398 | if (strpos($subDomain, '.')) { |
399 | - $name = '*' . strstr($subDomain, '.'); |
|
399 | + $name = '*'.strstr($subDomain, '.'); |
|
400 | 400 | } |
401 | 401 | |
402 | 402 | if (isset($this->bind[$domain])) { |
@@ -727,7 +727,7 @@ discard block |
||
727 | 727 | $this->init(); |
728 | 728 | |
729 | 729 | if ($withRoute) { |
730 | - $checkCallback = function () use ($request, $withRoute) { |
|
730 | + $checkCallback = function() use ($request, $withRoute) { |
|
731 | 731 | //加载路由 |
732 | 732 | $withRoute(); |
733 | 733 | return $this->check(); |
@@ -746,7 +746,7 @@ discard block |
||
746 | 746 | |
747 | 747 | $dispatch->init($this->app); |
748 | 748 | |
749 | - $this->app->middleware->add(function () use ($dispatch) { |
|
749 | + $this->app->middleware->add(function() use ($dispatch) { |
|
750 | 750 | try { |
751 | 751 | $response = $dispatch->run(); |
752 | 752 | } catch (HttpResponseException $exception) { |
@@ -770,7 +770,7 @@ discard block |
||
770 | 770 | $closure = $this->config['route_check_cache_key']; |
771 | 771 | $routeKey = $closure($request); |
772 | 772 | } else { |
773 | - $routeKey = md5($request->baseUrl(true) . ':' . $request->method()); |
|
773 | + $routeKey = md5($request->baseUrl(true).':'.$request->method()); |
|
774 | 774 | } |
775 | 775 | |
776 | 776 | return $routeKey; |
@@ -820,10 +820,10 @@ discard block |
||
820 | 820 | $path = $pathinfo; |
821 | 821 | } elseif ($suffix) { |
822 | 822 | // 去除正常的URL后缀 |
823 | - $path = preg_replace('/\.(' . ltrim($suffix, '.') . ')$/i', '', $pathinfo); |
|
823 | + $path = preg_replace('/\.('.ltrim($suffix, '.').')$/i', '', $pathinfo); |
|
824 | 824 | } else { |
825 | 825 | // 允许任何后缀访问 |
826 | - $path = preg_replace('/\.' . $this->request->ext() . '$/i', '', $pathinfo); |
|
826 | + $path = preg_replace('/\.'.$this->request->ext().'$/i', '', $pathinfo); |
|
827 | 827 | } |
828 | 828 | |
829 | 829 | return $path; |
@@ -866,9 +866,9 @@ discard block |
||
866 | 866 | $item = $this->domains[$this->host]; |
867 | 867 | } elseif (isset($this->domains[$subDomain])) { |
868 | 868 | $item = $this->domains[$subDomain]; |
869 | - } elseif (isset($this->domains['*.' . $domain2]) && !empty($domain3)) { |
|
869 | + } elseif (isset($this->domains['*.'.$domain2]) && !empty($domain3)) { |
|
870 | 870 | // 泛三级域名 |
871 | - $item = $this->domains['*.' . $domain2]; |
|
871 | + $item = $this->domains['*.'.$domain2]; |
|
872 | 872 | $panDomain = $domain3; |
873 | 873 | } elseif (isset($this->domains['*']) && !empty($domain2)) { |
874 | 874 | // 泛二级域名 |
@@ -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\route; |
14 | 14 | |
@@ -134,7 +134,7 @@ discard block |
||
134 | 134 | $rule = '/' != $rule ? ltrim($rule, '/') : ''; |
135 | 135 | |
136 | 136 | if ($this->parent && $prefix = $this->parent->getFullName()) { |
137 | - $rule = $prefix . ($rule ? '/' . ltrim($rule, '/') : ''); |
|
137 | + $rule = $prefix.($rule ? '/'.ltrim($rule, '/') : ''); |
|
138 | 138 | } |
139 | 139 | |
140 | 140 | if (false !== strpos($rule, ':')) { |
@@ -237,7 +237,7 @@ discard block |
||
237 | 237 | |
238 | 238 | if (isset($option['ext'])) { |
239 | 239 | // 路由ext参数 优先于系统配置的URL伪静态后缀参数 |
240 | - $url = preg_replace('/\.(' . $request->ext() . ')$/i', '', $url); |
|
240 | + $url = preg_replace('/\.('.$request->ext().')$/i', '', $url); |
|
241 | 241 | } |
242 | 242 | |
243 | 243 | return $url; |
@@ -261,38 +261,38 @@ discard block |
||
261 | 261 | $pattern = array_merge($this->parent->getPattern(), $this->pattern); |
262 | 262 | |
263 | 263 | // 检查完整规则定义 |
264 | - if (isset($pattern['__url__']) && !preg_match(0 === strpos($pattern['__url__'], '/') ? $pattern['__url__'] : '/^' . $pattern['__url__'] . ($completeMatch ? '$' : '') . '/', str_replace('|', $depr, $url))) { |
|
264 | + if (isset($pattern['__url__']) && !preg_match(0 === strpos($pattern['__url__'], '/') ? $pattern['__url__'] : '/^'.$pattern['__url__'].($completeMatch ? '$' : '').'/', str_replace('|', $depr, $url))) { |
|
265 | 265 | return false; |
266 | 266 | } |
267 | 267 | |
268 | 268 | $var = []; |
269 | - $url = $depr . str_replace('|', $depr, $url); |
|
270 | - $rule = $depr . str_replace('/', $depr, $this->rule); |
|
269 | + $url = $depr.str_replace('|', $depr, $url); |
|
270 | + $rule = $depr.str_replace('/', $depr, $this->rule); |
|
271 | 271 | |
272 | 272 | if ($depr == $rule && $depr != $url) { |
273 | 273 | return false; |
274 | 274 | } |
275 | 275 | |
276 | 276 | if (false === strpos($rule, '<')) { |
277 | - if (0 === strcasecmp($rule, $url) || (!$completeMatch && 0 === strncasecmp($rule . $depr, $url . $depr, strlen($rule . $depr)))) { |
|
277 | + if (0 === strcasecmp($rule, $url) || (!$completeMatch && 0 === strncasecmp($rule.$depr, $url.$depr, strlen($rule.$depr)))) { |
|
278 | 278 | return $var; |
279 | 279 | } |
280 | 280 | return false; |
281 | 281 | } |
282 | 282 | |
283 | - $slash = preg_quote('/-' . $depr, '/'); |
|
283 | + $slash = preg_quote('/-'.$depr, '/'); |
|
284 | 284 | |
285 | - if ($matchRule = preg_split('/[' . $slash . ']?<\w+\??>/', $rule, 2)) { |
|
285 | + if ($matchRule = preg_split('/['.$slash.']?<\w+\??>/', $rule, 2)) { |
|
286 | 286 | if ($matchRule[0] && 0 !== strncasecmp($rule, $url, strlen($matchRule[0]))) { |
287 | 287 | return false; |
288 | 288 | } |
289 | 289 | } |
290 | 290 | |
291 | - if (preg_match_all('/[' . $slash . ']?<?\w+\??>?/', $rule, $matches)) { |
|
291 | + if (preg_match_all('/['.$slash.']?<?\w+\??>?/', $rule, $matches)) { |
|
292 | 292 | $regex = $this->buildRuleRegex($rule, $matches[0], $pattern, $option, $completeMatch); |
293 | 293 | |
294 | 294 | try { |
295 | - if (!preg_match('/^' . $regex . ($completeMatch ? '$' : '') . '/u', $url, $match)) { |
|
295 | + if (!preg_match('/^'.$regex.($completeMatch ? '$' : '').'/u', $url, $match)) { |
|
296 | 296 | return false; |
297 | 297 | } |
298 | 298 | } catch (\Exception $e) { |
@@ -8,7 +8,7 @@ |
||
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\driver; |
14 | 14 |
@@ -42,15 +42,15 @@ discard block |
||
42 | 42 | { |
43 | 43 | $app = $input->getArgument('app'); |
44 | 44 | |
45 | - if (empty($app) && !is_dir($this->app->getBasePath() . 'controller')) { |
|
45 | + if (empty($app) && !is_dir($this->app->getBasePath().'controller')) { |
|
46 | 46 | $output->writeln('<error>Miss app name!</error>'); |
47 | 47 | return false; |
48 | 48 | } |
49 | 49 | |
50 | 50 | if ($app) { |
51 | - $filename = $this->app->getRootPath() . 'runtime' . DIRECTORY_SEPARATOR . $app . DIRECTORY_SEPARATOR . 'route_list_' . $app . '.php'; |
|
51 | + $filename = $this->app->getRootPath().'runtime'.DIRECTORY_SEPARATOR.$app.DIRECTORY_SEPARATOR.'route_list_'.$app.'.php'; |
|
52 | 52 | } else { |
53 | - $filename = $this->app->getRootPath() . 'runtime' . DIRECTORY_SEPARATOR . 'route_list.php'; |
|
53 | + $filename = $this->app->getRootPath().'runtime'.DIRECTORY_SEPARATOR.'route_list.php'; |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | if (is_file($filename)) { |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | } |
61 | 61 | |
62 | 62 | $content = $this->getRouteList($app); |
63 | - file_put_contents($filename, 'Route List' . PHP_EOL . $content); |
|
63 | + file_put_contents($filename, 'Route List'.PHP_EOL.$content); |
|
64 | 64 | } |
65 | 65 | |
66 | 66 | protected function getRouteList(string $app = null): string |
@@ -69,16 +69,16 @@ discard block |
||
69 | 69 | $this->app->route->clear(); |
70 | 70 | |
71 | 71 | if ($app) { |
72 | - $path = $this->app->getRootPath() . 'route' . DIRECTORY_SEPARATOR . $app . DIRECTORY_SEPARATOR; |
|
72 | + $path = $this->app->getRootPath().'route'.DIRECTORY_SEPARATOR.$app.DIRECTORY_SEPARATOR; |
|
73 | 73 | } else { |
74 | - $path = $this->app->getRootPath() . 'route' . DIRECTORY_SEPARATOR; |
|
74 | + $path = $this->app->getRootPath().'route'.DIRECTORY_SEPARATOR; |
|
75 | 75 | } |
76 | 76 | |
77 | 77 | $files = is_dir($path) ? scandir($path) : []; |
78 | 78 | |
79 | 79 | foreach ($files as $file) { |
80 | 80 | if (strpos($file, '.php')) { |
81 | - include $path . $file; |
|
81 | + include $path.$file; |
|
82 | 82 | } |
83 | 83 | } |
84 | 84 | |
@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | $sort = $this->sortBy[$sort]; |
118 | 118 | } |
119 | 119 | |
120 | - uasort($rows, function ($a, $b) use ($sort) { |
|
120 | + uasort($rows, function($a, $b) use ($sort) { |
|
121 | 121 | $itemA = $a[$sort] ?? null; |
122 | 122 | $itemB = $b[$sort] ?? null; |
123 | 123 |
@@ -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; |
14 | 14 | |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | */ |
37 | 37 | protected function loadRoutesFrom($path) |
38 | 38 | { |
39 | - $this->registerRoutes(function () use ($path) { |
|
39 | + $this->registerRoutes(function() use ($path) { |
|
40 | 40 | include $path; |
41 | 41 | }); |
42 | 42 | } |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | { |
60 | 60 | $commands = is_array($commands) ? $commands : func_get_args(); |
61 | 61 | |
62 | - Console::starting(function (Console $console) use ($commands) { |
|
62 | + Console::starting(function(Console $console) use ($commands) { |
|
63 | 63 | $console->addCommands($commands); |
64 | 64 | }); |
65 | 65 | } |
@@ -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\route; |
14 | 14 | |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | } |
110 | 110 | |
111 | 111 | if ($this->parent && $this->parent->getFullName()) { |
112 | - $this->fullName = $this->parent->getFullName() . ($this->name ? '/' . $this->name : ''); |
|
112 | + $this->fullName = $this->parent->getFullName().($this->name ? '/'.$this->name : ''); |
|
113 | 113 | } else { |
114 | 114 | $this->fullName = $this->name; |
115 | 115 | } |
@@ -304,13 +304,13 @@ discard block |
||
304 | 304 | protected function checkMergeRuleRegex(Request $request, array &$rules, string $url, bool $completeMatch) |
305 | 305 | { |
306 | 306 | $depr = $this->router->config('pathinfo_depr'); |
307 | - $url = $depr . str_replace('|', $depr, $url); |
|
307 | + $url = $depr.str_replace('|', $depr, $url); |
|
308 | 308 | $regex = []; |
309 | 309 | $items = []; |
310 | 310 | |
311 | 311 | foreach ($rules as $key => $item) { |
312 | 312 | if ($item instanceof RuleItem) { |
313 | - $rule = $depr . str_replace('/', $depr, $item->getRule()); |
|
313 | + $rule = $depr.str_replace('/', $depr, $item->getRule()); |
|
314 | 314 | if ($depr == $rule && $depr != $url) { |
315 | 315 | unset($rules[$key]); |
316 | 316 | continue; |
@@ -327,21 +327,21 @@ discard block |
||
327 | 327 | continue; |
328 | 328 | } |
329 | 329 | |
330 | - $slash = preg_quote('/-' . $depr, '/'); |
|
330 | + $slash = preg_quote('/-'.$depr, '/'); |
|
331 | 331 | |
332 | - if ($matchRule = preg_split('/[' . $slash . ']<\w+\??>/', $rule, 2)) { |
|
332 | + if ($matchRule = preg_split('/['.$slash.']<\w+\??>/', $rule, 2)) { |
|
333 | 333 | if ($matchRule[0] && 0 !== strncasecmp($rule, $url, strlen($matchRule[0]))) { |
334 | 334 | unset($rules[$key]); |
335 | 335 | continue; |
336 | 336 | } |
337 | 337 | } |
338 | 338 | |
339 | - if (preg_match_all('/[' . $slash . ']?<?\w+\??>?/', $rule, $matches)) { |
|
339 | + if (preg_match_all('/['.$slash.']?<?\w+\??>?/', $rule, $matches)) { |
|
340 | 340 | unset($rules[$key]); |
341 | 341 | $pattern = array_merge($this->getPattern(), $item->getPattern()); |
342 | 342 | $option = array_merge($this->getOption(), $item->getOption()); |
343 | 343 | |
344 | - $regex[$key] = $this->buildRuleRegex($rule, $matches[0], $pattern, $option, $complete, '_THINK_' . $key); |
|
344 | + $regex[$key] = $this->buildRuleRegex($rule, $matches[0], $pattern, $option, $complete, '_THINK_'.$key); |
|
345 | 345 | $items[$key] = $item; |
346 | 346 | } |
347 | 347 | } |
@@ -352,7 +352,7 @@ discard block |
||
352 | 352 | } |
353 | 353 | |
354 | 354 | try { |
355 | - $result = preg_match('/^(?:' . implode('|', $regex) . ')/u', $url, $match); |
|
355 | + $result = preg_match('/^(?:'.implode('|', $regex).')/u', $url, $match); |
|
356 | 356 | } catch (\Exception $e) { |
357 | 357 | throw new Exception('route pattern error'); |
358 | 358 | } |
@@ -369,7 +369,7 @@ discard block |
||
369 | 369 | |
370 | 370 | if (!isset($pos)) { |
371 | 371 | foreach ($regex as $key => $item) { |
372 | - if (0 === strpos(str_replace(['\/', '\-', '\\' . $depr], ['/', '-', $depr], $item), $match[0])) { |
|
372 | + if (0 === strpos(str_replace(['\/', '\-', '\\'.$depr], ['/', '-', $depr], $item), $match[0])) { |
|
373 | 373 | $pos = $key; |
374 | 374 | break; |
375 | 375 | } |
@@ -398,7 +398,7 @@ discard block |
||
398 | 398 | * @access public |
399 | 399 | * @return RuleItem|null |
400 | 400 | */ |
401 | - public function getMissRule(): ? RuleItem |
|
401 | + public function getMissRule(): ? RuleItem |
|
402 | 402 | { |
403 | 403 | return $this->miss; |
404 | 404 | } |
@@ -484,7 +484,7 @@ discard block |
||
484 | 484 | public function prefix(string $prefix) |
485 | 485 | { |
486 | 486 | if ($this->parent && $this->parent->getOption('prefix')) { |
487 | - $prefix = $this->parent->getOption('prefix') . $prefix; |
|
487 | + $prefix = $this->parent->getOption('prefix').$prefix; |
|
488 | 488 | } |
489 | 489 | |
490 | 490 | return $this->setOption('prefix', $prefix); |
@@ -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\route; |
14 | 14 | |
@@ -109,10 +109,10 @@ discard block |
||
109 | 109 | $item = []; |
110 | 110 | |
111 | 111 | foreach ($array as $val) { |
112 | - $item[] = $val . '/<' . ($option['var'][$val] ?? $val . '_id') . '>'; |
|
112 | + $item[] = $val.'/<'.($option['var'][$val] ?? $val.'_id').'>'; |
|
113 | 113 | } |
114 | 114 | |
115 | - $rule = implode('/', $item) . '/' . $last; |
|
115 | + $rule = implode('/', $item).'/'.$last; |
|
116 | 116 | } |
117 | 117 | |
118 | 118 | $prefix = substr($rule, strlen($this->name) + 1); |
@@ -125,12 +125,12 @@ discard block |
||
125 | 125 | } |
126 | 126 | |
127 | 127 | if (isset($last) && strpos($val[1], '<id>') && isset($option['var'][$last])) { |
128 | - $val[1] = str_replace('<id>', '<' . $option['var'][$last] . '>', $val[1]); |
|
128 | + $val[1] = str_replace('<id>', '<'.$option['var'][$last].'>', $val[1]); |
|
129 | 129 | } elseif (strpos($val[1], '<id>') && isset($option['var'][$rule])) { |
130 | - $val[1] = str_replace('<id>', '<' . $option['var'][$rule] . '>', $val[1]); |
|
130 | + $val[1] = str_replace('<id>', '<'.$option['var'][$rule].'>', $val[1]); |
|
131 | 131 | } |
132 | 132 | |
133 | - $ruleItem = $this->addRule(trim($prefix . $val[1], '/'), $this->route . '/' . $val[2], $val[0]); |
|
133 | + $ruleItem = $this->addRule(trim($prefix.$val[1], '/'), $this->route.'/'.$val[2], $val[0]); |
|
134 | 134 | |
135 | 135 | foreach (['model', 'validate', 'middleware'] as $name) { |
136 | 136 | if (isset($this->$name[$key])) { |
@@ -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 | //------------------------ |
14 | 14 | // ThinkPHP 助手函数 |
@@ -227,12 +227,12 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 | } |