Skip to content

Commit 3fb8db2

Browse files
committed
Apply fixes from StyleCI
1 parent b2ec26f commit 3fb8db2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Schema.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ protected function loadResultColumn(array $info): ColumnInterface|null
381381
return null;
382382
}
383383

384-
$dbType = match($info['native_type']) {
384+
$dbType = match ($info['native_type']) {
385385
'TINY' => 'tinyint',
386386
'SHORT' => 'smallint',
387387
'INT24' => 'mediumint',
@@ -390,7 +390,7 @@ protected function loadResultColumn(array $info): ColumnInterface|null
390390
'NEWDECIMAL' => 'decimal',
391391
'STRING' => 'char',
392392
'VAR_STRING' => 'varchar',
393-
'BLOB' => match($info['len']) {
393+
'BLOB' => match ($info['len']) {
394394
255 => 'tinyblob',
395395
510, 765, 1020 => 'tinytext',
396396
// 65535 => 'blob',

0 commit comments

Comments
 (0)