mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-27 19:51:09 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			466 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			466 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Crater\Events;
 | |
| 
 | |
| use Illuminate\Broadcasting\InteractsWithSockets;
 | |
| use Illuminate\Foundation\Events\Dispatchable;
 | |
| use Illuminate\Queue\SerializesModels;
 | |
| 
 | |
| class ModuleInstalledEvent
 | |
| {
 | |
|     use Dispatchable;
 | |
|     use InteractsWithSockets;
 | |
|     use SerializesModels;
 | |
| 
 | |
|     public $module;
 | |
| 
 | |
|     /**
 | |
|      * Create a new event instance.
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
|     public function __construct($module)
 | |
|     {
 | |
|         $this->module = $module;
 | |
|     }
 | |
| }
 |