Passed
Push — dev ( 72eb07...9b7706 )
by 世昌
02:33
created
suda/src/application/loader/ApplicationLoader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
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
         }
Please login to merge, or discard this patch.
suda/src/application/loader/ApplicationModuleLoader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -178,7 +178,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
suda/src/database/statement/PrepareTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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)) {
Please login to merge, or discard this patch.
suda/src/database/statement/WriteStatement.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -210,10 +210,10 @@
 block discarded – undo
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
         }
Please login to merge, or discard this patch.
suda/src/database/statement/WherePrepareTrait.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
     public function prepareQueryMark(string $sql, array $parameter)
22 22
     {
23 23
         $binders = [];
24
-        $query = preg_replace_callback('/\?/', function ($match) use (&$binders, $parameter) {
24
+        $query = preg_replace_callback('/\?/', function($match) use (&$binders, $parameter) {
25 25
             $index = count($binders);
26 26
             if (array_key_exists($index, $parameter)) {
27 27
                 $name = Binder::index($index);
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
                 } else {
33 33
                     $binder = new Binder($name, $parameter[$index]);
34 34
                     $binders[] = $binder;
35
-                    return ':' . $binder->getName();
35
+                    return ':'.$binder->getName();
36 36
                 }
37 37
             }
38 38
             return $match[0];
@@ -50,14 +50,14 @@  discard block
 block discarded – undo
50 50
     public function prepareInParameter($values, string $name)
51 51
     {
52 52
         if ($this->count($values) <= 0) {
53
-            throw new SQLException('on field ' . $name . ' value can\'t be empty array');
53
+            throw new SQLException('on field '.$name.' value can\'t be empty array');
54 54
         }
55 55
         $names = [];
56 56
         $binders = [];
57 57
         foreach ($values as $value) {
58 58
             $_name = Binder::index($name);
59 59
             $binders[] = new Binder($_name, $value);
60
-            $names[] = ':' . $_name;
60
+            $names[] = ':'.$_name;
61 61
         }
62 62
         return [implode(',', $names), $binders];
63 63
     }
@@ -85,10 +85,10 @@  discard block
 block discarded – undo
85 85
     public function createQueryOperation(string $name, string $operator, $value, string $indexName = '')
86 86
     {
87 87
         if ($value instanceof Query) {
88
-            return new Query("`{$name}` {$operator} " . $value, $value->getBinder());
88
+            return new Query("`{$name}` {$operator} ".$value, $value->getBinder());
89 89
         }
90 90
         if ($value instanceof Statement) {
91
-            return new Query("`{$name}` {$operator} (" . $value->getQuery() . ')', $value->getBinder());
91
+            return new Query("`{$name}` {$operator} (".$value->getQuery().')', $value->getBinder());
92 92
         }
93 93
         if ($value instanceof IteratorAggregate || is_array($value)) {
94 94
             return $this->prepareIn($name, $operator, $value);
@@ -229,7 +229,7 @@  discard block
 block discarded – undo
229 229
             return $this->createQueryOperation($name, 'in', $values);
230 230
         }
231 231
         list($inSQL, $binders) = $this->prepareInParameter($values, $name);
232
-        $sql = '`' . $name . '` ' . strtoupper($operation) . ' (' . $inSQL . ')';
232
+        $sql = '`'.$name.'` '.strtoupper($operation).' ('.$inSQL.')';
233 233
         return new Query($sql, $binders);
234 234
     }
235 235
 
@@ -244,6 +244,6 @@  discard block
 block discarded – undo
244 244
     public function replaceQuote(string $name, string $replace, string $target)
245 245
     {
246 246
         $name = ltrim($name, ':');
247
-        return preg_replace('/(?<!_):' . preg_quote($name) . '/', $replace, $target);
247
+        return preg_replace('/(?<!_):'.preg_quote($name).'/', $replace, $target);
248 248
     }
249 249
 }
Please login to merge, or discard this patch.
suda/src/database/statement/ReadStatement.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -197,7 +197,7 @@  discard block
 block discarded – undo
197 197
     protected function whereStringArray(string $where, array $whereBinder)
198 198
     {
199 199
         list($where, $whereBinder) = $this->prepareWhereString($where, $whereBinder);
200
-        $this->where = 'WHERE ' . $where;
200
+        $this->where = 'WHERE '.$where;
201 201
         $this->binder = $this->mergeBinder($this->binder, $whereBinder);
202 202
     }
203 203
 
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
     public function groupBy(string $what)
211 211
     {
212 212
         $what = $this->middleware->inputName($what);
213
-        $this->groupBy = 'GROUP BY `' . $what . '`';
213
+        $this->groupBy = 'GROUP BY `'.$what.'`';
214 214
         return $this;
215 215
     }
216 216
 
@@ -253,7 +253,7 @@  discard block
 block discarded – undo
253 253
     protected function havingStringArray(string $having, array $havingBinder)
254 254
     {
255 255
         list($having, $havingBinder) = $this->prepareWhereString($having, $havingBinder);
256
-        $this->having = 'HAVING ' . $having;
256
+        $this->having = 'HAVING '.$having;
257 257
         $this->binder = $this->mergeBinder($this->binder, $havingBinder);
258 258
     }
259 259
 
@@ -269,9 +269,9 @@  discard block
 block discarded – undo
269 269
         $what = $this->middleware->inputName($what);
270 270
         $order = strtoupper($order);
271 271
         if (strlen($this->orderBy) > 0) {
272
-            $this->orderBy .= ',`' . $what . '` ' . $order;
272
+            $this->orderBy .= ',`'.$what.'` '.$order;
273 273
         } else {
274
-            $this->orderBy = 'ORDER BY `' . $what . '` ' . $order;
274
+            $this->orderBy = 'ORDER BY `'.$what.'` '.$order;
275 275
         }
276 276
         return $this;
277 277
     }
@@ -293,7 +293,7 @@  discard block
 block discarded – undo
293 293
      */
294 294
     public function limit(int $start, int $length = null)
295 295
     {
296
-        $this->limit = 'LIMIT ' . $start . ($length !== null ? ',' . $length : '');
296
+        $this->limit = 'LIMIT '.$start.($length !== null ? ','.$length : '');
297 297
         return $this;
298 298
     }
299 299
 
Please login to merge, or discard this patch.
suda/src/application/processor/FileRangeProcessor.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -88,10 +88,10 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     /**
Please login to merge, or discard this patch.
suda/src/application/processor/RunnableRequestProcessor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
suda/src/application/Application.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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)) {
Please login to merge, or discard this patch.