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