@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | * @param string $path |
80 | 80 | * @return Module|null |
81 | 81 | */ |
82 | - public function guess(string $path):?Module |
|
82 | + public function guess(string $path): ?Module |
|
83 | 83 | { |
84 | 84 | foreach ($this->module as $module) { |
85 | 85 | if (FileSystem::isOverflowPath($module->getPath(), $path) === false) { |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | * @param string $name |
113 | 113 | * @return Module|null |
114 | 114 | */ |
115 | - public function get(string $name):?Module |
|
115 | + public function get(string $name): ?Module |
|
116 | 116 | { |
117 | 117 | $full = $this->getFullName($name); |
118 | 118 | return $this->module[$full] ?? null; |
@@ -205,7 +205,7 @@ discard block |
||
205 | 205 | if (array_key_exists($version, $this->knownsFullName[$sortName])) { |
206 | 206 | return $this->knownsFullName[$sortName][$version]; |
207 | 207 | } |
208 | - return $hasVersion?$sortName.':'.$version:end($this->knownsFullName[$sortName]); |
|
208 | + return $hasVersion ? $sortName.':'.$version : end($this->knownsFullName[$sortName]); |
|
209 | 209 | } |
210 | 210 | |
211 | 211 | protected function getLikeName(string $name):string |
@@ -31,7 +31,7 @@ |
||
31 | 31 | */ |
32 | 32 | public function packValue(?string $matched) |
33 | 33 | { |
34 | - return $matched ? urlencode($matched): ''; |
|
34 | + return $matched ? urlencode($matched) : ''; |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | /** |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | { |
44 | 44 | $this->routes = new RouteCollection; |
45 | 45 | $this->runnable = []; |
46 | - $this->default = new Runnable([__CLASS__ , 'defaultResponse']); |
|
46 | + $this->default = new Runnable([__CLASS__, 'defaultResponse']); |
|
47 | 47 | } |
48 | 48 | |
49 | 49 | /** |
@@ -300,7 +300,7 @@ discard block |
||
300 | 300 | * @param bool $allowQuery |
301 | 301 | * @return string|null |
302 | 302 | */ |
303 | - public function create(string $name, array $parameter, bool $allowQuery = true):?string |
|
303 | + public function create(string $name, array $parameter, bool $allowQuery = true): ?string |
|
304 | 304 | { |
305 | 305 | if ($matcher = $this->routes->get($name)) { |
306 | 306 | return UriMatcher::buildUri($matcher->getMatcher(), $parameter, $allowQuery); |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | */ |
18 | 18 | public function log($level, $message, array $context = []) |
19 | 19 | { |
20 | - print date('Y-m-d H:i:s') . ' ' . $this->interpolate($message, $context) . PHP_EOL; |
|
20 | + print date('Y-m-d H:i:s').' '.$this->interpolate($message, $context).PHP_EOL; |
|
21 | 21 | } |
22 | 22 | |
23 | 23 | /** |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | { |
30 | 30 | $replace = []; |
31 | 31 | foreach ($context as $key => $val) { |
32 | - $replace['{' . $key . '}'] = $val; |
|
32 | + $replace['{'.$key.'}'] = $val; |
|
33 | 33 | } |
34 | 34 | return strtr($message, $replace); |
35 | 35 | } |
@@ -71,13 +71,13 @@ |
||
71 | 71 | ); |
72 | 72 | $exported = []; |
73 | 73 | foreach ($props as $value) { |
74 | - $name = dechex($value->getModifiers()) . '$' . $value->getName(); |
|
74 | + $name = dechex($value->getModifiers()).'$'.$value->getName(); |
|
75 | 75 | $value->setAccessible(true); |
76 | 76 | $exported[$name] = new DebugObject($value->getValue($object), $this->context); |
77 | 77 | } |
78 | 78 | return $exported; |
79 | 79 | } catch (ReflectionException $e) { |
80 | - return 'Err:' . $e->getMessage(); |
|
80 | + return 'Err:'.$e->getMessage(); |
|
81 | 81 | } |
82 | 82 | } |
83 | 83 |
@@ -2,17 +2,17 @@ |
||
2 | 2 | $host = $argv[1] ?? '127.0.0.1:9501'; |
3 | 3 | list($ip, $port) = explode(':', $host); |
4 | 4 | |
5 | -define('SUDA_APP', __DIR__ . '/app'); |
|
6 | -define('SUDA_DATA', __DIR__ . '/data'); |
|
7 | -define('SUDA_SYSTEM', __DIR__ . '/suda'); |
|
5 | +define('SUDA_APP', __DIR__.'/app'); |
|
6 | +define('SUDA_DATA', __DIR__.'/data'); |
|
7 | +define('SUDA_SYSTEM', __DIR__.'/suda'); |
|
8 | 8 | define('SUDA_PUBLIC', __DIR__); |
9 | 9 | define('SUDA_DEBUG', true); |
10 | 10 | define('SUDA_DEBUG_LEVEL', 'debug'); |
11 | -define('SUDA_APP_MANIFEST', SUDA_APP . '/manifest'); |
|
11 | +define('SUDA_APP_MANIFEST', SUDA_APP.'/manifest'); |
|
12 | 12 | |
13 | 13 | // 设置IP或者端口 |
14 | 14 | define('SUDA_SWOOLE_IP', $ip); |
15 | 15 | define('SUDA_SWOOLE_PORT', $port); |
16 | 16 | |
17 | -require_once __DIR__ .'/vendor/autoload.php'; |
|
17 | +require_once __DIR__.'/vendor/autoload.php'; |
|
18 | 18 | require_once SUDA_SYSTEM.'/loader/swoole.php'; |
19 | 19 | \ No newline at end of file |
@@ -6,7 +6,7 @@ |
||
6 | 6 | define('SUDA_DEBUG', true); |
7 | 7 | define('SUDA_DEBUG_LEVEL', 'info'); |
8 | 8 | |
9 | -require_once __DIR__ .'/../vendor/autoload.php'; |
|
9 | +require_once __DIR__.'/../vendor/autoload.php'; |
|
10 | 10 | require_once SUDA_SYSTEM.'/loader/main.php'; |
11 | 11 | |
12 | 12 |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | protected function prepare(Request $request, Response $response) |
85 | 85 | { |
86 | 86 | |
87 | - $response->setHeader('x-powered-by', 'suda/' . SUDA_VERSION, true); |
|
87 | + $response->setHeader('x-powered-by', 'suda/'.SUDA_VERSION, true); |
|
88 | 88 | $response->getWrapper()->register(ExceptionContentWrapper::class, [Throwable::class]); |
89 | 89 | $response->getWrapper()->register(TemplateWrapper::class, [RawTemplate::class]); |
90 | 90 | |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | if (!$appResponse->isSend()) { |
139 | 139 | $appResponse->end(); |
140 | 140 | } |
141 | - $this->debug->info('responded with code ' . $appResponse->getStatus()); |
|
141 | + $this->debug->info('responded with code '.$appResponse->getStatus()); |
|
142 | 142 | $this->debug->timeEnd('sending response'); |
143 | 143 | } catch (Throwable $e) { |
144 | 144 | $this->debug->uncaughtException($e); |
@@ -163,13 +163,13 @@ discard block |
||
163 | 163 | $route = $attributes['config'] ?? []; |
164 | 164 | $runnable = null; |
165 | 165 | if (array_key_exists('class', $route)) { |
166 | - $runnable = $this->className($route['class']) . '->onRequest'; |
|
166 | + $runnable = $this->className($route['class']).'->onRequest'; |
|
167 | 167 | } elseif (array_key_exists('source', $route)) { |
168 | 168 | $attributes['source'] = $route['source']; |
169 | - $runnable = FileRequestProcessor::class . '->onRequest'; |
|
169 | + $runnable = FileRequestProcessor::class.'->onRequest'; |
|
170 | 170 | } elseif (array_key_exists('template', $route)) { |
171 | 171 | $attributes['template'] = $route['template']; |
172 | - $runnable = TemplateRequestProcessor::class . '->onRequest'; |
|
172 | + $runnable = TemplateRequestProcessor::class.'->onRequest'; |
|
173 | 173 | } elseif (array_key_exists('runnable', $route)) { |
174 | 174 | $runnable = $route['runnable']; |
175 | 175 | } else { |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | $subfix = $this->config['subfix'] ?? '.tpl.html'; |
22 | 22 | $path = $this |
23 | 23 | ->getResource($this->module) |
24 | - ->getResourcePath($this->getTemplatePath() . '/' . $this->name . $subfix); |
|
24 | + ->getResourcePath($this->getTemplatePath().'/'.$this->name.$subfix); |
|
25 | 25 | $this->loadDynamicTemplateConfig($path.'.ini'); |
26 | 26 | return $path; |
27 | 27 | } |
@@ -46,9 +46,9 @@ discard block |
||
46 | 46 | */ |
47 | 47 | public function getPath() |
48 | 48 | { |
49 | - $output = $this->config['output'] ?? $this->application->getDataPath() . '/template/' . $this->uriName; |
|
49 | + $output = $this->config['output'] ?? $this->application->getDataPath().'/template/'.$this->uriName; |
|
50 | 50 | FileSystem::make($output); |
51 | - return $output . '/' . $this->name . '.php'; |
|
51 | + return $output.'/'.$this->name.'.php'; |
|
52 | 52 | } |
53 | 53 | |
54 | 54 | /** |
@@ -72,9 +72,9 @@ discard block |
||
72 | 72 | */ |
73 | 73 | public function getRenderedString() |
74 | 74 | { |
75 | - $this->application->debug()->time('render ' . $this->name); |
|
75 | + $this->application->debug()->time('render '.$this->name); |
|
76 | 76 | $code = parent::getRenderedString(); |
77 | - $time = $this->application->debug()->timeEnd('render ' . $this->name); |
|
77 | + $time = $this->application->debug()->timeEnd('render '.$this->name); |
|
78 | 78 | $this->application->debug()->recordTiming('render', $time); |
79 | 79 | return $code; |
80 | 80 | } |
@@ -86,9 +86,9 @@ discard block |
||
86 | 86 | protected function compile() |
87 | 87 | { |
88 | 88 | if ($this->isCompiled() === false) { |
89 | - $this->application->debug()->time('compile ' . $this->name); |
|
89 | + $this->application->debug()->time('compile '.$this->name); |
|
90 | 90 | $result = parent::compile(); |
91 | - $this->application->debug()->timeEnd('compile ' . $this->name); |
|
91 | + $this->application->debug()->timeEnd('compile '.$this->name); |
|
92 | 92 | return $result; |
93 | 93 | } |
94 | 94 | return true; |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | } |
113 | 113 | return $this->application->getUrl($this->request, $name, $values ?? [], true, $this->module, $this->group); |
114 | 114 | } elseif (is_string($defaultName)) { |
115 | - $parameter = is_array($name)?array_merge($query, $name):$query; |
|
115 | + $parameter = is_array($name) ?array_merge($query, $name) : $query; |
|
116 | 116 | return $this->application->getUrl( |
117 | 117 | $this->request, |
118 | 118 | $defaultName, |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | $this->group |
123 | 123 | ); |
124 | 124 | } |
125 | - return '#' . $defaultName; |
|
125 | + return '#'.$defaultName; |
|
126 | 126 | } |
127 | 127 | |
128 | 128 |