mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-30 21:21:09 -04:00 
			
		
		
		
	v6 update
This commit is contained in:
		
							
								
								
									
										26
									
								
								app/Events/ModuleEnabledEvent.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										26
									
								
								app/Events/ModuleEnabledEvent.php
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,26 @@ | ||||
| <?php | ||||
|  | ||||
| namespace Crater\Events; | ||||
|  | ||||
| use Illuminate\Broadcasting\InteractsWithSockets; | ||||
| use Illuminate\Foundation\Events\Dispatchable; | ||||
| use Illuminate\Queue\SerializesModels; | ||||
|  | ||||
| class ModuleEnabledEvent | ||||
| { | ||||
|     use Dispatchable; | ||||
|     use InteractsWithSockets; | ||||
|     use SerializesModels; | ||||
|  | ||||
|     public $module; | ||||
|  | ||||
|     /** | ||||
|      * Create a new event instance. | ||||
|      * | ||||
|      * @return void | ||||
|      */ | ||||
|     public function __construct($module) | ||||
|     { | ||||
|         $this->module = $module; | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user