Add faker for TextField

This commit is contained in:
philipp lang 2023-12-27 00:42:31 +01:00
parent 87ee15936d
commit d7e7fb3c27
1 changed files with 3 additions and 1 deletions

View File

@ -25,6 +25,8 @@ class TextField extends Field
public static function fake(Generator $faker): array
{
return [];
return [
'required' => $faker->boolean(),
];
}
}