@@ -8,7 +8,7 @@ discard block |
||
8 | 8 | // +---------------------------------------------------------------------- |
9 | 9 | // | Author: yunwuxin <[email protected]> |
10 | 10 | // +---------------------------------------------------------------------- |
11 | -declare (strict_types = 1); |
|
11 | +declare(strict_types=1); |
|
12 | 12 | |
13 | 13 | namespace think\console; |
14 | 14 | |
@@ -207,7 +207,7 @@ discard block |
||
207 | 207 | $array[] = str_repeat($style[1], $width + 2); |
208 | 208 | } |
209 | 209 | |
210 | - return $style[0] . implode($style[2], $array) . $style[3] . PHP_EOL; |
|
210 | + return $style[0].implode($style[2], $array).$style[3].PHP_EOL; |
|
211 | 211 | } |
212 | 212 | |
213 | 213 | /** |
@@ -221,11 +221,11 @@ discard block |
||
221 | 221 | $content = $this->renderSeparator('top'); |
222 | 222 | |
223 | 223 | foreach ($this->header as $key => $header) { |
224 | - $array[] = ' ' . str_pad($header, $this->colWidth[$key], $style[1], $this->headerAlign); |
|
224 | + $array[] = ' '.str_pad($header, $this->colWidth[$key], $style[1], $this->headerAlign); |
|
225 | 225 | } |
226 | 226 | |
227 | 227 | if (!empty($array)) { |
228 | - $content .= $style[0] . implode(' ' . $style[2], $array) . ' ' . $style[3] . PHP_EOL; |
|
228 | + $content .= $style[0].implode(' '.$style[2], $array).' '.$style[3].PHP_EOL; |
|
229 | 229 | |
230 | 230 | if (!empty($this->rows)) { |
231 | 231 | $content .= $this->renderSeparator('middle'); |
@@ -268,12 +268,12 @@ discard block |
||
268 | 268 | $content .= $this->renderSeparator('middle'); |
269 | 269 | } elseif (is_scalar($row)) { |
270 | 270 | $content .= $this->renderSeparator('cross-top'); |
271 | - $width = 3 * (count($this->colWidth) - 1) + array_reduce($this->colWidth, function ($a, $b) { |
|
271 | + $width = 3 * (count($this->colWidth) - 1) + array_reduce($this->colWidth, function($a, $b) { |
|
272 | 272 | return $a + $b; |
273 | 273 | }); |
274 | 274 | $array = str_pad($row, $width); |
275 | 275 | |
276 | - $content .= $style[0] . ' ' . $array . ' ' . $style[3] . PHP_EOL; |
|
276 | + $content .= $style[0].' '.$array.' '.$style[3].PHP_EOL; |
|
277 | 277 | $content .= $this->renderSeparator('cross-bottom'); |
278 | 278 | } else { |
279 | 279 | $array = []; |
@@ -285,10 +285,10 @@ discard block |
||
285 | 285 | if (false !== $encoding = mb_detect_encoding((string) $val, null, true)) { |
286 | 286 | $width += strlen((string) $val) - mb_strwidth((string) $val, $encoding); |
287 | 287 | } |
288 | - $array[] = ' ' . str_pad((string) $val, $width, ' ', $this->cellAlign); |
|
288 | + $array[] = ' '.str_pad((string) $val, $width, ' ', $this->cellAlign); |
|
289 | 289 | } |
290 | 290 | |
291 | - $content .= $style[0] . implode(' ' . $style[2], $array) . ' ' . $style[3] . PHP_EOL; |
|
291 | + $content .= $style[0].implode(' '.$style[2], $array).' '.$style[3].PHP_EOL; |
|
292 | 292 | } |
293 | 293 | } |
294 | 294 | } |