| 
									
										
										
										
											2021-12-07 22:55:11 +08:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-10 22:54:58 +08:00
										 |  |  | namespace Database\Factories\Actions; | 
					
						
							| 
									
										
										
										
											2021-12-07 22:55:11 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-10 22:54:58 +08:00
										 |  |  | use BookStack\Actions\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(), | 
					
						
							| 
									
										
										
										
											2021-12-07 22:55:11 +08:00
										 |  |  |             'endpoint' => $this->faker->url, | 
					
						
							| 
									
										
										
										
											2021-12-18 19:43:05 +08:00
										 |  |  |             'active'   => true, | 
					
						
							| 
									
										
										
										
											2021-12-07 22:55:11 +08:00
										 |  |  |         ]; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |