Skip to content

Commit

Permalink
undo factory
Browse files Browse the repository at this point in the history
  • Loading branch information
adereksisusanto committed May 13, 2024
1 parent 9a39453 commit 7e06077
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions database/factories/TranslationFileFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ class TranslationFileFactory extends Factory
public function definition(): array
{
return [
'name' => $this->faker->randomElement(['app', 'auth', 'pagination', 'passwords', 'validation', 'en']),
'extension' => $this->faker->randomElement(['php', 'php', 'php', 'php', 'php', 'json']),
'is_root' => $this->faker->randomElement([false, false, false, false, false, true]),
'name' => $this->faker->randomElement(['app', 'auth', 'pagination', 'passwords', 'validation']),
'extension' => 'php',
'is_root' => false,
];
}

Expand Down

0 comments on commit 7e06077

Please sign in to comment.