mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-03 06:56:15 +00:00
* wip * wip * cleanup * notification channels * phpstan * services * remove server types * refactoring * refactoring
20 lines
297 B
PHP
20 lines
297 B
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use App\Models\BackupFile;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
/**
|
|
* @extends Factory<BackupFile>
|
|
*/
|
|
class BackupFileFactory extends Factory
|
|
{
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
//
|
|
];
|
|
}
|
|
}
|