@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | * |
27 | 27 | * @return string|null |
28 | 28 | */ |
29 | - public function getSourcePath():?string |
|
29 | + public function getSourcePath(): ?string |
|
30 | 30 | { |
31 | 31 | $subfix = $this->config['subfix'] ?? '.tpl.html'; |
32 | 32 | return $this->getResource($this->module)->getResourcePath($this->getTemplatePath().'/'.$this->name.$subfix); |
@@ -39,9 +39,9 @@ discard block |
||
39 | 39 | */ |
40 | 40 | public function getPath() |
41 | 41 | { |
42 | - $output = $this->config['output'] ?? \constant('SUDA_DATA').'/template/'. $this->uriName; |
|
42 | + $output = $this->config['output'] ?? \constant('SUDA_DATA').'/template/'.$this->uriName; |
|
43 | 43 | FileSystem::make($output); |
44 | - return $output .'/'. $this->name.'.php'; |
|
44 | + return $output.'/'.$this->name.'.php'; |
|
45 | 45 | } |
46 | 46 | |
47 | 47 | /** |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | } |
70 | 70 | return $this->application->getUrl($this->request, $name, $values ?? [], true, $this->module, $this->group); |
71 | 71 | } elseif (is_array($name) && \is_string($defaultName)) { |
72 | - return $this->application->getUrl($this->request, $defaultName, array_merge($this->request->get() ?? [], $name) , true, $this->module, $this->group); |
|
72 | + return $this->application->getUrl($this->request, $defaultName, array_merge($this->request->get() ?? [], $name), true, $this->module, $this->group); |
|
73 | 73 | } elseif (is_string($defaultName)) { |
74 | 74 | return $this->application->getUrl($this->request, $defaultName, $this->request->get() ?? [], true, $this->module, $this->group); |
75 | 75 | } |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | if ($this->request->getAttribute('route') === $full) { |
89 | 89 | if (\is_array($parameter)) { |
90 | 90 | foreach ($parameter as $key => $value) { |
91 | - if ($this->request->getQuery($key) != $value){ |
|
91 | + if ($this->request->getQuery($key) != $value) { |
|
92 | 92 | return false; |
93 | 93 | } |
94 | 94 | } |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | if (array_key_exists('server-port', $this->request->server())) { |
99 | 99 | return $this->request->server()['server-port']; |
100 | 100 | } |
101 | - return $this->getSecure()?443:80; |
|
101 | + return $this->getSecure() ? 443 : 80; |
|
102 | 102 | } |
103 | 103 | |
104 | 104 | /** |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | */ |
139 | 139 | private function createUribase(Request $request) |
140 | 140 | { |
141 | - $scheme = $request->isSecure()?'https':'http'; |
|
141 | + $scheme = $request->isSecure() ? 'https' : 'http'; |
|
142 | 142 | $port = $request->getPort(); |
143 | 143 | if ($port == 80 && $scheme == 'http') { |
144 | 144 | $port = ''; |
@@ -147,7 +147,7 @@ discard block |
||
147 | 147 | } else { |
148 | 148 | $port = ':'.$port; |
149 | 149 | } |
150 | - $base = $scheme.'://'. $request->getHost().$port; |
|
150 | + $base = $scheme.'://'.$request->getHost().$port; |
|
151 | 151 | $request->setUribase($base); |
152 | 152 | } |
153 | 153 | } |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | * @param string|null $default |
22 | 22 | * @return string|null |
23 | 23 | */ |
24 | - public function getUrl(Request $request, string $name, array $parameter = [], bool $allowQuery = true, ?string $default = null, ?string $group = null):?string |
|
24 | + public function getUrl(Request $request, string $name, array $parameter = [], bool $allowQuery = true, ?string $default = null, ?string $group = null): ?string |
|
25 | 25 | { |
26 | 26 | $group = $group ?? $request->getAttribute('group'); |
27 | 27 | $default = $default ?? $request->getAttribute('module'); |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | */ |
38 | 38 | protected function getUrlIndex(Request $request):string |
39 | 39 | { |
40 | - $indexs = $this->conf('indexs') ?? [ 'index.php' ]; |
|
40 | + $indexs = $this->conf('indexs') ?? ['index.php']; |
|
41 | 41 | $index = ltrim($request->getIndex(), '/'); |
42 | 42 | if (!\in_array($index, $indexs)) { |
43 | 43 | return $request->getIndex(); |
@@ -139,7 +139,7 @@ discard block |
||
139 | 139 | */ |
140 | 140 | public function getUribase(Request $request, bool $beautify = true):string { |
141 | 141 | $index = $beautify ? $this->getUrlIndex($request) : $request->getIndex(); |
142 | - return $request->getUribase() . $index; |
|
142 | + return $request->getUribase().$index; |
|
143 | 143 | } |
144 | 144 | |
145 | 145 | /** |
@@ -150,6 +150,6 @@ discard block |
||
150 | 150 | */ |
151 | 151 | protected function getRouteGroupPrefix(?string $group):string |
152 | 152 | { |
153 | - return $group === null || $group === 'default' ? '': '@'. $group; |
|
153 | + return $group === null || $group === 'default' ? '' : '@'.$group; |
|
154 | 154 | } |
155 | 155 | } |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | */ |
26 | 26 | public function __construct($resource = []) |
27 | 27 | { |
28 | - $this->resource = \is_array($resource)?$resource:[$resource]; |
|
28 | + $this->resource = \is_array($resource) ? $resource : [$resource]; |
|
29 | 29 | } |
30 | 30 | |
31 | 31 | /** |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | * @param string $limitPath 父级溢出 |
66 | 66 | * @return string|null |
67 | 67 | */ |
68 | - public function getResourcePath(string $path, string $limitPath = null):?string |
|
68 | + public function getResourcePath(string $path, string $limitPath = null): ?string |
|
69 | 69 | { |
70 | 70 | foreach ($this->resource as $root) { |
71 | 71 | $target = $root.'/'.$path; |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | * @param string $path |
84 | 84 | * @return string|null |
85 | 85 | */ |
86 | - public function getConfigResourcePath(string $path):?string |
|
86 | + public function getConfigResourcePath(string $path): ?string |
|
87 | 87 | { |
88 | 88 | foreach ($this->resource as $root) { |
89 | 89 | if ($target = PathResolver::resolve($root.'/'.$path)) { |
@@ -36,16 +36,16 @@ discard block |
||
36 | 36 | $this->debug->info('==============================='); |
37 | 37 | $this->debug->time('loading application'); |
38 | 38 | $appLoader->load(); |
39 | - $this->event->exec('application:load-config', [ $this->config ,$this]); |
|
39 | + $this->event->exec('application:load-config', [$this->config, $this]); |
|
40 | 40 | $this->debug->timeEnd('loading application'); |
41 | 41 | $this->debug->time('loading datasource'); |
42 | 42 | $appLoader->loadDataSource(); |
43 | 43 | Table::load($this); |
44 | - $this->event->exec('application:load-environment', [ $this->config ,$this]); |
|
44 | + $this->event->exec('application:load-environment', [$this->config, $this]); |
|
45 | 45 | $this->debug->timeEnd('loading datasource'); |
46 | 46 | $this->debug->time('loading route'); |
47 | 47 | $appLoader->loadRoute(); |
48 | - $this->event->exec('application:load-route', [$this->route , $this]); |
|
48 | + $this->event->exec('application:load-route', [$this->route, $this]); |
|
49 | 49 | $this->debug->timeEnd('loading route'); |
50 | 50 | $this->debug->info('-------------------------------'); |
51 | 51 | } |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | if (!$response->isSended()) { |
98 | 98 | $response->end(); |
99 | 99 | } |
100 | - $this->debug->info('resposned with code '. $response->getStatus()); |
|
100 | + $this->debug->info('resposned with code '.$response->getStatus()); |
|
101 | 101 | $this->debug->timeEnd('sending response'); |
102 | 102 | } catch (\Throwable $e) { |
103 | 103 | $this->debug->uncaughtException($e); |
@@ -155,7 +155,7 @@ discard block |
||
155 | 155 | protected function createResponse(?MatchResult $result, Request $request, Response $response) |
156 | 156 | { |
157 | 157 | if (SUDA_DEBUG) { |
158 | - $response->setHeader('x-route', $result === null?'default':$result->getName()); |
|
158 | + $response->setHeader('x-route', $result === null ? 'default' : $result->getName()); |
|
159 | 159 | } |
160 | 160 | if ($result === null) { |
161 | 161 | $content = $this->defaultResponse($this, $request, $response); |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | |
18 | 18 | class Debug implements LoggerInterface, LoggerAwareInterface, DumpInterface, AttachInterface, ConfigInterface |
19 | 19 | { |
20 | - use LoggerTrait,LoggerAwareTrait,DumpTrait,AttachTrait,ConfigTrait; |
|
20 | + use LoggerTrait, LoggerAwareTrait, DumpTrait, AttachTrait, ConfigTrait; |
|
21 | 21 | |
22 | 22 | /** |
23 | 23 | * 忽略堆栈 |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | { |
69 | 69 | $replace = []; |
70 | 70 | foreach ($context as $key => $val) { |
71 | - $replace['{' . $key . '}'] = $val; |
|
71 | + $replace['{'.$key.'}'] = $val; |
|
72 | 72 | } |
73 | 73 | return strtr($message, $replace); |
74 | 74 | } |
@@ -84,26 +84,26 @@ discard block |
||
84 | 84 | return $attribute; |
85 | 85 | } |
86 | 86 | |
87 | - public static function formatBytes(int $bytes, int $precision=0) |
|
87 | + public static function formatBytes(int $bytes, int $precision = 0) |
|
88 | 88 | { |
89 | - $human= ['B', 'KB', 'MB', 'GB', 'TB']; |
|
89 | + $human = ['B', 'KB', 'MB', 'GB', 'TB']; |
|
90 | 90 | $bytes = max($bytes, 0); |
91 | - $pow = floor(($bytes?log($bytes):0)/log(1024)); |
|
92 | - $pos = min($pow, count($human)-1); |
|
93 | - $bytes /= (1 << (10* $pos)); |
|
91 | + $pow = floor(($bytes ?log($bytes) : 0) / log(1024)); |
|
92 | + $pos = min($pow, count($human) - 1); |
|
93 | + $bytes /= (1 << (10 * $pos)); |
|
94 | 94 | return round($bytes, $precision).' '.$human[$pos]; |
95 | 95 | } |
96 | 96 | |
97 | - public function time(string $name, string $type= LogLevel::INFO) |
|
97 | + public function time(string $name, string $type = LogLevel::INFO) |
|
98 | 98 | { |
99 | - $this->timeRecord[$name]=['time'=>microtime(true),'level'=>$type]; |
|
99 | + $this->timeRecord[$name] = ['time'=>microtime(true), 'level'=>$type]; |
|
100 | 100 | } |
101 | 101 | |
102 | 102 | public function timeEnd(string $name) |
103 | 103 | { |
104 | 104 | if (\array_key_exists($name, $this->timeRecord)) { |
105 | - $pass=microtime(true)-$this->timeRecord[$name]['time']; |
|
106 | - $this->log($this->timeRecord[$name]['level'], 'process '. $name.' cost '. number_format($pass, 5).'s'); |
|
105 | + $pass = microtime(true) - $this->timeRecord[$name]['time']; |
|
106 | + $this->log($this->timeRecord[$name]['level'], 'process '.$name.' cost '.number_format($pass, 5).'s'); |
|
107 | 107 | return $pass; |
108 | 108 | } |
109 | 109 | return 0; |
@@ -230,7 +230,7 @@ |
||
230 | 230 | protected function closeOutputBuffer(bool $flush) |
231 | 231 | { |
232 | 232 | while (ob_get_level() > 0) { |
233 | - $flush?ob_end_flush():ob_end_clean(); |
|
233 | + $flush ?ob_end_flush() : ob_end_clean(); |
|
234 | 234 | } |
235 | 235 | } |
236 | 236 |
@@ -42,4 +42,4 @@ |
||
42 | 42 | } |
43 | 43 | } |
44 | 44 | // 加载器 |
45 | -require_once SUDA_SYSTEM .'/src/framework/loader/Loader.php'; |
|
45 | +require_once SUDA_SYSTEM.'/src/framework/loader/Loader.php'; |
@@ -1,12 +1,12 @@ |
||
1 | 1 | <?php |
2 | 2 | function suda_panic($error_type, $error_message, $error_code = 500) |
3 | 3 | { |
4 | - date_default_timezone_set(defined('DEFAULT_TIMEZONE')?constant('DEFAULT_TIMEZONE'):'PRC'); |
|
4 | + date_default_timezone_set(defined('DEFAULT_TIMEZONE') ?constant('DEFAULT_TIMEZONE') : 'PRC'); |
|
5 | 5 | header('HTTP/1.1 500 Internal Server Error'); |
6 | 6 | header('Status:500 Internal Server Error'); |
7 | 7 | ob_start(); |
8 | 8 | $error_sort_type = strpos($error_type, '\\') === false ? $error_type : \substr($error_type, \strrpos($error_type, '\\') + 1); |
9 | - include __DIR__ .'/error.php'; |
|
9 | + include __DIR__.'/error.php'; |
|
10 | 10 | header('Content-Type:text/html; charset=UTF-8'); |
11 | 11 | header('Content-Length:'.ob_get_length()); |
12 | 12 | die(ob_get_clean()); |