This commit is contained in:
Adrian Hopek
2022-01-24 14:57:59 +01:00
parent 595bb707e4
commit ed2fc06caa
12 changed files with 150 additions and 19 deletions

View File

@@ -11,7 +11,7 @@ class YearPeriodFactory extends Factory
public function definition(): array
{
return [
"year" => $this->faker->unique()->year,
"year" => (int)$this->faker->unique()->year,
];
}
}