mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-19 09:51:37 +00:00
16 lines
230 B
PHP
16 lines
230 B
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
class BackupFileFactory extends Factory
|
|
{
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
//
|
|
];
|
|
}
|
|
}
|