2026-02-18 10:53:58 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Database\Factories;
|
|
|
|
|
|
2026-02-18 13:30:44 +00:00
|
|
|
use App\Models\Team;
|
2026-02-18 10:53:58 +00:00
|
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
|
|
|
|
|
|
class ScheduledTaskFactory extends Factory
|
|
|
|
|
{
|
|
|
|
|
public function definition(): array
|
|
|
|
|
{
|
|
|
|
|
return [
|
|
|
|
|
'name' => fake()->word(),
|
|
|
|
|
'command' => 'echo hello',
|
|
|
|
|
'frequency' => '* * * * *',
|
|
|
|
|
'timeout' => 300,
|
|
|
|
|
'enabled' => true,
|
2026-02-18 13:30:44 +00:00
|
|
|
'team_id' => Team::factory(),
|
2026-02-18 10:53:58 +00:00
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
}
|