@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | * @param string $className |
| 42 | 42 | * @return string|null |
| 43 | 43 | */ |
| 44 | - public function getClassPath(string $className):?string |
|
| 44 | + public function getClassPath(string $className): ?string |
|
| 45 | 45 | { |
| 46 | 46 | // 搜索路径 |
| 47 | 47 | foreach ($this->includePath as $includeNamespace => $includePaths) { |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | * @param string $filename |
| 59 | 59 | * @return string|null |
| 60 | 60 | */ |
| 61 | - public function import(string $filename):?string |
|
| 61 | + public function import(string $filename): ?string |
|
| 62 | 62 | { |
| 63 | 63 | if ($filename = static::realPath($filename)) { |
| 64 | 64 | static::requireOnce($filename); |
@@ -101,7 +101,7 @@ discard block |
||
| 101 | 101 | * @param string $className |
| 102 | 102 | * @return string|null |
| 103 | 103 | */ |
| 104 | - protected function getClassPathByAlias(string $includePath, string $className):?string |
|
| 104 | + protected function getClassPathByAlias(string $includePath, string $className): ?string |
|
| 105 | 105 | { |
| 106 | 106 | $namepath = static::formatSeparator($className); |
| 107 | 107 | $className = static::realName($className); |
@@ -126,7 +126,7 @@ discard block |
||
| 126 | 126 | * @param string $className |
| 127 | 127 | * @return string|null |
| 128 | 128 | */ |
| 129 | - protected function getClassPathByName(string $includeNamespace, string $includePath, string $className):?string |
|
| 129 | + protected function getClassPathByName(string $includeNamespace, string $includePath, string $className): ?string |
|
| 130 | 130 | { |
| 131 | 131 | if (is_numeric($includeNamespace)) { |
| 132 | 132 | $path = $includePath.DIRECTORY_SEPARATOR.static::formatSeparator($className).'.php'; |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | |
| 85 | 85 | public function loadVendorIfExist() |
| 86 | 86 | { |
| 87 | - $vendorAutoload = $this->application->getPath() . '/vendor/autoload.php'; |
|
| 87 | + $vendorAutoload = $this->application->getPath().'/vendor/autoload.php'; |
|
| 88 | 88 | if (FileSystem::exist($vendorAutoload)) { |
| 89 | 89 | Loader::requireOnce($vendorAutoload); |
| 90 | 90 | } |
@@ -121,7 +121,7 @@ discard block |
||
| 121 | 121 | |
| 122 | 122 | protected function registerModule() |
| 123 | 123 | { |
| 124 | - $extractPath = $this->application->getDataPath() . '/extract-module'; |
|
| 124 | + $extractPath = $this->application->getDataPath().'/extract-module'; |
|
| 125 | 125 | FileSystem::make($extractPath); |
| 126 | 126 | foreach ($this->application->getModulePaths() as $path) { |
| 127 | 127 | $this->registerModuleFrom($path, $extractPath); |
@@ -68,13 +68,13 @@ |
||
| 68 | 68 | ); |
| 69 | 69 | $exported = []; |
| 70 | 70 | foreach ($props as $value) { |
| 71 | - $name = dechex($value->getModifiers()) . '$' . $value->getName(); |
|
| 71 | + $name = dechex($value->getModifiers()).'$'.$value->getName(); |
|
| 72 | 72 | $value->setAccessible(true); |
| 73 | 73 | $exported[$name] = new DebugObject($value->getValue($object), $this->context); |
| 74 | 74 | } |
| 75 | 75 | return $exported; |
| 76 | 76 | } catch (\ReflectionException $e) { |
| 77 | - return 'Err:' . $e->getMessage(); |
|
| 77 | + return 'Err:'.$e->getMessage(); |
|
| 78 | 78 | } |
| 79 | 79 | } |
| 80 | 80 | |
@@ -11,21 +11,21 @@ discard block |
||
| 11 | 11 | * @param string $path |
| 12 | 12 | * @return string|null |
| 13 | 13 | */ |
| 14 | - public static function resolve(string $path):?string |
|
| 14 | + public static function resolve(string $path): ?string |
|
| 15 | 15 | { |
| 16 | 16 | if (file_exists($path) && is_file($path)) { |
| 17 | 17 | return $path; |
| 18 | 18 | } |
| 19 | 19 | $basepath = dirname($path).'/'.pathinfo($path, PATHINFO_FILENAME); |
| 20 | 20 | |
| 21 | - return static::resolveYaml($basepath) ?? static::resolveExtensions($basepath, ['json','php','ini']); |
|
| 21 | + return static::resolveYaml($basepath) ?? static::resolveExtensions($basepath, ['json', 'php', 'ini']); |
|
| 22 | 22 | } |
| 23 | 23 | |
| 24 | 24 | /** |
| 25 | 25 | * @param string $basepath |
| 26 | 26 | * @return string|null |
| 27 | 27 | */ |
| 28 | - protected static function resolveYaml(string $basepath):?string |
|
| 28 | + protected static function resolveYaml(string $basepath): ?string |
|
| 29 | 29 | { |
| 30 | 30 | if (file_exists($conf = $basepath.'.yml') || file_exists($conf = $basepath.'.yaml')) { |
| 31 | 31 | if (function_exists('yaml_parse') || class_exists('Spyc') || class_exists('Symfony\Component\Yaml\Yaml')) { |
@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | return null; |
| 36 | 36 | } |
| 37 | 37 | |
| 38 | - protected static function resolveExtensions(string $basepath, array $extensions):?string |
|
| 38 | + protected static function resolveExtensions(string $basepath, array $extensions): ?string |
|
| 39 | 39 | { |
| 40 | 40 | foreach ($extensions as $ext) { |
| 41 | 41 | $conf = $basepath.'.'.$ext; |
@@ -65,7 +65,7 @@ |
||
| 65 | 65 | |
| 66 | 66 | protected static function parseValue(string $content, array $extra = [], bool $raw = true): string |
| 67 | 67 | { |
| 68 | - return preg_replace_callback('/\$\{(.+?)\}/', function ($matchs) use ($extra, $raw) { |
|
| 68 | + return preg_replace_callback('/\$\{(.+?)\}/', function($matchs) use ($extra, $raw) { |
|
| 69 | 69 | $name = $matchs[1]; |
| 70 | 70 | if (($value = ArrayDotAccess::get($extra, $name, null)) !== null) { |
| 71 | 71 | } elseif (defined($name)) { |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | */ |
| 77 | 77 | protected function prepare(Request $request, Response $response) |
| 78 | 78 | { |
| 79 | - $response->setHeader('x-powered-by', 'suda/' . SUDA_VERSION, true); |
|
| 79 | + $response->setHeader('x-powered-by', 'suda/'.SUDA_VERSION, true); |
|
| 80 | 80 | $response->getWrapper()->register(ExceptionContentWrapper::class, [Throwable::class]); |
| 81 | 81 | $response->getWrapper()->register(TemplateWrapper::class, [RawTemplate::class]); |
| 82 | 82 | |
@@ -129,7 +129,7 @@ discard block |
||
| 129 | 129 | if (!$appResponse->isSend()) { |
| 130 | 130 | $appResponse->end(); |
| 131 | 131 | } |
| 132 | - $this->debug->info('responded with code ' . $appResponse->getStatus()); |
|
| 132 | + $this->debug->info('responded with code '.$appResponse->getStatus()); |
|
| 133 | 133 | $this->debug->timeEnd('sending response'); |
| 134 | 134 | } catch (Throwable $e) { |
| 135 | 135 | $this->debug->uncaughtException($e); |
@@ -155,13 +155,13 @@ discard block |
||
| 155 | 155 | $route = $attributes['config'] ?? []; |
| 156 | 156 | $runnable = null; |
| 157 | 157 | if (array_key_exists('class', $route)) { |
| 158 | - $runnable = $this->className($route['class']) . '->onRequest'; |
|
| 158 | + $runnable = $this->className($route['class']).'->onRequest'; |
|
| 159 | 159 | } elseif (array_key_exists('source', $route)) { |
| 160 | 160 | $attributes['source'] = $route['source']; |
| 161 | - $runnable = FileRequestProcessor::class . '->onRequest'; |
|
| 161 | + $runnable = FileRequestProcessor::class.'->onRequest'; |
|
| 162 | 162 | } elseif (array_key_exists('template', $route)) { |
| 163 | 163 | $attributes['template'] = $route['template']; |
| 164 | - $runnable = TemplateRequestProcessor::class . '->onRequest'; |
|
| 164 | + $runnable = TemplateRequestProcessor::class.'->onRequest'; |
|
| 165 | 165 | } elseif (array_key_exists('runnable', $route)) { |
| 166 | 166 | $runnable = $route['runnable']; |
| 167 | 167 | } else { |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | if (array_key_exists('server-port', $this->server)) { |
| 114 | 114 | return $this->server['server-port']; |
| 115 | 115 | } |
| 116 | - return $this->getSecure()?443:80; |
|
| 116 | + return $this->getSecure() ? 443 : 80; |
|
| 117 | 117 | } |
| 118 | 118 | |
| 119 | 119 | /** |
@@ -157,7 +157,7 @@ discard block |
||
| 157 | 157 | */ |
| 158 | 158 | public static function createUriBase(RequestWrapper $request) |
| 159 | 159 | { |
| 160 | - $scheme = $request->isSecure()?'https':'http'; |
|
| 160 | + $scheme = $request->isSecure() ? 'https' : 'http'; |
|
| 161 | 161 | $port = $request->getPort(); |
| 162 | 162 | if ($port == 80 && $scheme == 'http') { |
| 163 | 163 | $port = ''; |
@@ -166,7 +166,7 @@ discard block |
||
| 166 | 166 | } else { |
| 167 | 167 | $port = ':'.$port; |
| 168 | 168 | } |
| 169 | - $base = $scheme.'://'. $request->getHost().$port; |
|
| 169 | + $base = $scheme.'://'.$request->getHost().$port; |
|
| 170 | 170 | return $base; |
| 171 | 171 | } |
| 172 | 172 | |
@@ -88,10 +88,10 @@ discard block |
||
| 88 | 88 | */ |
| 89 | 89 | protected function sendMultipleFileByRange(Response $response, array $ranges) |
| 90 | 90 | { |
| 91 | - $separates = 'multiple_range_' . base64_encode(md5(uniqid(), true)); |
|
| 92 | - $response->setHeader('content-type', 'multipart/byteranges; boundary=' . $separates); |
|
| 91 | + $separates = 'multiple_range_'.base64_encode(md5(uniqid(), true)); |
|
| 92 | + $response->setHeader('content-type', 'multipart/byteranges; boundary='.$separates); |
|
| 93 | 93 | foreach ($ranges as $range) { |
| 94 | - $response->write('--' . $separates . "\r\n"); |
|
| 94 | + $response->write('--'.$separates."\r\n"); |
|
| 95 | 95 | $this->sendMultipleRangePart($response, $range); |
| 96 | 96 | $this->sendFileByRange($response, $range); |
| 97 | 97 | $response->write("\r\n"); |
@@ -138,8 +138,8 @@ discard block |
||
| 138 | 138 | */ |
| 139 | 139 | protected function sendMultipleRangePart(Response $response, array $range) |
| 140 | 140 | { |
| 141 | - $response->write('Content-Type: ' . $this->mime . "\r\n"); |
|
| 142 | - $response->write('Content-Range: ' . $this->getRangeHeader($range) . "\r\n\r\n"); |
|
| 141 | + $response->write('Content-Type: '.$this->mime."\r\n"); |
|
| 142 | + $response->write('Content-Range: '.$this->getRangeHeader($range)."\r\n\r\n"); |
|
| 143 | 143 | } |
| 144 | 144 | |
| 145 | 145 | /** |
@@ -304,15 +304,15 @@ |
||
| 304 | 304 | if ($this->expire !== 0) { |
| 305 | 305 | $time = $this->fullTime ? $this->expire : time() + $this->expire; |
| 306 | 306 | $dateTime = DateTime::createFromFormat('U', $time, new DateTimeZone('GMT')); |
| 307 | - $cookie .= '; Expires=' . str_replace('+0000', '', $dateTime->format('D, d M Y H:i:s T')); |
|
| 307 | + $cookie .= '; Expires='.str_replace('+0000', '', $dateTime->format('D, d M Y H:i:s T')); |
|
| 308 | 308 | } |
| 309 | 309 | |
| 310 | 310 | if ($this->domain !== null) { |
| 311 | - $cookie .= '; Domain=' . $this->domain; |
|
| 311 | + $cookie .= '; Domain='.$this->domain; |
|
| 312 | 312 | } |
| 313 | 313 | |
| 314 | 314 | if ($this->path) { |
| 315 | - $cookie .= '; Path=' . $this->path; |
|
| 315 | + $cookie .= '; Path='.$this->path; |
|
| 316 | 316 | } |
| 317 | 317 | |
| 318 | 318 | if ($this->secure) { |