add default value for "ignored_files" in backup factory

This commit is contained in:
Boy132 2024-04-30 00:03:43 +02:00
parent 488acce564
commit 7a4289cee1

View File

@ -28,6 +28,7 @@ class BackupFactory extends Factory
'is_successful' => true, 'is_successful' => true,
'created_at' => CarbonImmutable::now(), 'created_at' => CarbonImmutable::now(),
'completed_at' => CarbonImmutable::now(), 'completed_at' => CarbonImmutable::now(),
'ignored_files' => [],
]; ];
} }
} }