BookStack/database/factories/Actions/WebhookFactory.php

26 lines
517 B
PHP
Raw Normal View History

2021-12-07 14:55:11 +00:00
<?php
namespace Database\Factories\Actions;
2021-12-07 14:55:11 +00:00
use BookStack\Actions\Webhook;
2021-12-07 14:55:11 +00:00
use Illuminate\Database\Eloquent\Factories\Factory;
class WebhookFactory extends Factory
{
protected $model = Webhook::class;
2021-12-07 14:55:11 +00:00
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
{
return [
2021-12-18 11:43:05 +00:00
'name' => 'My webhook for ' . $this->faker->country(),
2021-12-07 14:55:11 +00:00
'endpoint' => $this->faker->url,
2021-12-18 11:43:05 +00:00
'active' => true,
2021-12-07 14:55:11 +00:00
];
}
}