Skip to content

Commit ace165c

Browse files
authored
fix cs (#329)
1 parent e5dfb84 commit ace165c

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

src/QueryReflection/PdoQueryReflector.php

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
use PHPStan\Type\Type;
1616
use staabm\PHPStanDba\Error;
1717
use staabm\PHPStanDba\TypeMapping\MysqlTypeMapper;
18+
use function strtoupper;
1819

1920
/**
2021
* @phpstan-type ColumnMeta array{name: string, table: string, native_type: string, len: int, flags: list<string>}
@@ -262,13 +263,13 @@ private function isNumericCol(string $mysqlType): bool
262263
{
263264
return match (strtoupper($mysqlType)) {
264265
'LONGLONG',
265-
'LONG',
266-
'SHORT',
267-
'TINY',
268-
'YEAR',
269-
'BIT',
270-
'INT24' => true,
271-
default => false,
266+
'LONG',
267+
'SHORT',
268+
'TINY',
269+
'YEAR',
270+
'BIT',
271+
'INT24' => true,
272+
default => false,
272273
};
273274
}
274275
}

0 commit comments

Comments
 (0)