Skip to content

Commit a176175

Browse files
refactor(Trait): add type in class in CustomMySqlQueries
1 parent 4460b25 commit a176175

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/CustomMySqlQueries.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
trait CustomMySqlQueries
1010
{
11-
protected $dataTypes = [
11+
protected array $dataTypes = [
1212
'bool' => 'bool',
1313
'boolean' => 'bool',
1414
'bit' => 'string',
@@ -41,7 +41,7 @@ trait CustomMySqlQueries
4141
'point' => 'string',
4242
];
4343

44-
protected $columnTypes = [
44+
protected array $columnTypes = [
4545
'tinyint(1)' => 'bool'
4646
];
4747

0 commit comments

Comments
 (0)