@@ -197,7 +197,7 @@ discard block |
||
197 | 197 | protected function whereStringArray(string $where, array $whereBinder) |
198 | 198 | { |
199 | 199 | [$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 |
||
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 |
||
253 | 253 | protected function havingStringArray(string $having, array $havingBinder) |
254 | 254 | { |
255 | 255 | [$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 |
||
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 |
||
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 |
@@ -21,7 +21,7 @@ discard block |
||
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 |
||
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 |
||
50 | 50 | public function prepareInParameter($values, string $name) |
51 | 51 | { |
52 | 52 | if ($this->countObject($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 |
||
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 |
||
229 | 229 | return $this->createQueryOperation($name, 'in', $values); |
230 | 230 | } |
231 | 231 | [$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 |
||
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 | } |
@@ -81,7 +81,7 @@ |
||
81 | 81 | if (array_key_exists($groupName, static::$dataSource)) { |
82 | 82 | return static::$dataSource[$groupName]; |
83 | 83 | } |
84 | - $group = $groupName === 'default' ? '': '-'. $groupName; |
|
84 | + $group = $groupName === 'default' ? '' : '-'.$groupName; |
|
85 | 85 | $dataSourceConfigPath = $resource->getConfigResourcePath('config/data-source'.$group); |
86 | 86 | $dataSource = new DataSource; |
87 | 87 | if ($dataSourceConfigPath !== null) { |
@@ -16,12 +16,12 @@ discard block |
||
16 | 16 | * @param string $path 目标路径 |
17 | 17 | * @return string|null 返回格式化结果,如果路径不存在则返回NULL |
18 | 18 | */ |
19 | - public static function format(string $path):?string |
|
19 | + public static function format(string $path): ?string |
|
20 | 20 | { |
21 | 21 | if (strlen(trim($path)) === 0) { |
22 | 22 | return null; |
23 | 23 | } |
24 | - return static::existCharset($path, ['GBK','GB2312','BIG5']); |
|
24 | + return static::existCharset($path, ['GBK', 'GB2312', 'BIG5']); |
|
25 | 25 | } |
26 | 26 | |
27 | 27 | /** |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | * @param array $charset |
30 | 30 | * @return string|null |
31 | 31 | */ |
32 | - public static function existCharset(string $path, array $charset):?string |
|
32 | + public static function existCharset(string $path, array $charset): ?string |
|
33 | 33 | { |
34 | 34 | $abspath = static::toAbsolutePath($path); |
35 | 35 | if (static::existCase($abspath)) { |
@@ -166,7 +166,7 @@ discard block |
||
166 | 166 | } |
167 | 167 | } |
168 | 168 | } catch (Exception $e) { |
169 | - echo '<div style="color:red">' . $e->getMessage() . '</div>'; |
|
169 | + echo '<div style="color:red">'.$e->getMessage().'</div>'; |
|
170 | 170 | return; |
171 | 171 | } |
172 | 172 | } |
@@ -188,9 +188,9 @@ discard block |
||
188 | 188 | return ob_get_clean() ?: ''; |
189 | 189 | } |
190 | 190 | throw new NoTemplateFoundException( |
191 | - 'missing dest at ' . $path , |
|
191 | + 'missing dest at '.$path, |
|
192 | 192 | E_USER_ERROR, |
193 | - $path , |
|
193 | + $path, |
|
194 | 194 | 1 |
195 | 195 | ); |
196 | 196 | } |