@@ -178,7 +178,7 @@ |
||
178 | 178 | */ |
179 | 179 | private function registerModule() |
180 | 180 | { |
181 | - $extractPath = $this->application->getDataPath() . '/extract-module'; |
|
181 | + $extractPath = $this->application->getDataPath().'/extract-module'; |
|
182 | 182 | FileSystem::make($extractPath); |
183 | 183 | foreach ($this->application->getModulePaths() as $path) { |
184 | 184 | $this->registerModuleFrom($path, $extractPath); |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | $fields = $reads; |
28 | 28 | } else { |
29 | 29 | $field = []; |
30 | - $prefix = strlen($table) ?"`{$table}`." :''; |
|
30 | + $prefix = strlen($table) ? "`{$table}`." : ''; |
|
31 | 31 | foreach ($reads as $want) { |
32 | 32 | $field[] = $prefix."`$want`"; |
33 | 33 | } |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | protected function mergeBinder(array $binderArray, array $parameter) |
66 | 66 | { |
67 | 67 | foreach ($parameter as $key => $value) { |
68 | - if (! ($value instanceof Binder)) { |
|
68 | + if (!($value instanceof Binder)) { |
|
69 | 69 | $value = new Binder($key, $value); |
70 | 70 | } |
71 | 71 | if (!in_array($value, $binderArray)) { |
@@ -210,10 +210,10 @@ |
||
210 | 210 | list($updateSet, $upBinder) = $this->prepareUpdateSet($this->data); |
211 | 211 | $this->binder = array_merge($this->binder, $upBinder); |
212 | 212 | } |
213 | - $string = "UPDATE " . $this->table . " SET " . $updateSet . " WHERE " . $this->whereCondition; |
|
213 | + $string = "UPDATE ".$this->table." SET ".$updateSet." WHERE ".$this->whereCondition; |
|
214 | 214 | return new Query($string, $this->binder); |
215 | 215 | } else { |
216 | - $string = "DELETE FROM " . $this->table . " WHERE " . $this->whereCondition; |
|
216 | + $string = "DELETE FROM ".$this->table." WHERE ".$this->whereCondition; |
|
217 | 217 | return new Query($string, $this->binder); |
218 | 218 | } |
219 | 219 | } |
@@ -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 | /** |
@@ -101,7 +101,7 @@ |
||
101 | 101 | $class = [$class]; |
102 | 102 | } |
103 | 103 | foreach ($class as $index => $className) { |
104 | - $class[$index] = $this->className($className) . '->onRequest'; |
|
104 | + $class[$index] = $this->className($className).'->onRequest'; |
|
105 | 105 | } |
106 | 106 | return $class; |
107 | 107 | } |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | */ |
85 | 85 | protected function prepare(Request $request, Response $response) |
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); |
@@ -161,7 +161,7 @@ discard block |
||
161 | 161 | public function request(array $method, string $name, string $url, array $attributes = []) |
162 | 162 | { |
163 | 163 | $route = $attributes['config'] ?? []; |
164 | - $runnable = RunnableRequestProcessor::class . '->onRequest'; |
|
164 | + $runnable = RunnableRequestProcessor::class.'->onRequest'; |
|
165 | 165 | if (array_key_exists('class', $route)) { |
166 | 166 | $attributes['class'] = $route['class']; |
167 | 167 | } elseif (array_key_exists('source', $route)) { |
@@ -26,7 +26,7 @@ |
||
26 | 26 | public function __construct(string $tableName, string $connection = 'default', bool $raw = false) |
27 | 27 | { |
28 | 28 | parent::__construct( |
29 | - $this->initStruct($tableName,$raw), |
|
29 | + $this->initStruct($tableName, $raw), |
|
30 | 30 | Database::getDataSource($connection), |
31 | 31 | $this); |
32 | 32 | } |
@@ -72,8 +72,8 @@ |
||
72 | 72 | 'context' => $this->context, |
73 | 73 | 'backtrace' => $throwable->getTrace(), |
74 | 74 | ]; |
75 | - $exceptionHash = md5($throwable->getFile() . $throwable->getLine() . $throwable->getCode()); |
|
76 | - $path = $dumpPath . '/' . microtime(true) . '.' . substr($exceptionHash, 0, 8) . '.json'; |
|
75 | + $exceptionHash = md5($throwable->getFile().$throwable->getLine().$throwable->getCode()); |
|
76 | + $path = $dumpPath.'/'.microtime(true).'.'.substr($exceptionHash, 0, 8).'.json'; |
|
77 | 77 | FileSystem::make($dumpPath); |
78 | 78 | FileSystem::put($path, json_encode( |
79 | 79 | new DebugObject($dumper), |
@@ -26,7 +26,7 @@ |
||
26 | 26 | */ |
27 | 27 | public function loadVendorIfExist() |
28 | 28 | { |
29 | - $vendorAutoload = $this->application->getPath() . '/vendor/autoload.php'; |
|
29 | + $vendorAutoload = $this->application->getPath().'/vendor/autoload.php'; |
|
30 | 30 | if (FileSystem::exist($vendorAutoload)) { |
31 | 31 | Loader::requireOnce($vendorAutoload); |
32 | 32 | } |