| 
									
										
										
										
											2021-12-07 22:55:11 +08:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-24 16:06:15 +08:00
										 |  |  | namespace Database\Factories\Activity\Models; | 
					
						
							| 
									
										
										
										
											2021-12-07 22:55:11 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-18 00:56:55 +08:00
										 |  |  | use BookStack\Activity\Models\Webhook; | 
					
						
							| 
									
										
										
										
											2021-12-07 22:55:11 +08:00
										 |  |  | use Illuminate\Database\Eloquent\Factories\Factory; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class WebhookFactory extends Factory | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-10 22:54:58 +08:00
										 |  |  |     protected $model = Webhook::class; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-07 22:55:11 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Define the model's default state. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return array | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function definition() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return [ | 
					
						
							| 
									
										
										
										
											2021-12-18 19:43:05 +08:00
										 |  |  |             'name'     => 'My webhook for ' . $this->faker->country(), | 
					
						
							| 
									
										
										
										
											2023-01-22 04:50:04 +08:00
										 |  |  |             'endpoint' => $this->faker->url(), | 
					
						
							| 
									
										
										
										
											2021-12-18 19:43:05 +08:00
										 |  |  |             'active'   => true, | 
					
						
							| 
									
										
										
										
											2022-01-04 03:42:48 +08:00
										 |  |  |             'timeout'  => 3, | 
					
						
							| 
									
										
										
										
											2021-12-07 22:55:11 +08:00
										 |  |  |         ]; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |