Skip to content

Commit 3e41811

Browse files
authored
Fix missing faker data when using "biginteger" (#178)
1 parent 9419dd4 commit 3e41811

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Generators/FactoryGenerator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ public static function fakerDataType(string $type)
196196
'timestamp' => 'dateTime()',
197197
'integer' => 'randomNumber()',
198198
'unsignedsmallinteger' => 'randomDigitNotNull',
199-
'bigint' => 'randomNumber()',
199+
'biginteger' => 'randomNumber()',
200200
'smallint' => 'randomNumber()',
201201
'decimal' => 'randomFloat(/** decimal_attributes **/)',
202202
'float' => 'randomFloat(/** float_attributes **/)',

0 commit comments

Comments
 (0)