bookstack/database/factories/Actions/WebhookTrackedEventFactory.php

24 lines
494 B
PHP
Raw Normal View History

2021-12-07 22:55:11 +08:00
<?php
namespace Database\Factories;
use BookStack\Actions\ActivityType;
use BookStack\Actions\Webhook;
2021-12-07 22:55:11 +08:00
use Illuminate\Database\Eloquent\Factories\Factory;
class WebhookTrackedEventFactory extends Factory
2021-12-07 22:55:11 +08:00
{
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
{
return [
'webhook_id' => Webhook::factory(),
'event' => ActivityType::all()[array_rand(ActivityType::all())],
2021-12-07 22:55:11 +08:00
];
}
}