mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
24 lines
507 B
PHP
24 lines
507 B
PHP
<?php
|
|
|
|
namespace Database\Factories\Actions;
|
|
|
|
use BookStack\Actions\ActivityType;
|
|
use BookStack\Actions\Webhook;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
class WebhookTrackedEventFactory extends Factory
|
|
{
|
|
/**
|
|
* Define the model's default state.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function definition()
|
|
{
|
|
return [
|
|
'webhook_id' => Webhook::factory(),
|
|
'event' => ActivityType::all()[array_rand(ActivityType::all())],
|
|
];
|
|
}
|
|
}
|