15 lines
		
	
	
		
			308 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			308 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Events;
 | 
						|
 | 
						|
use Illuminate\Broadcasting\InteractsWithSockets;
 | 
						|
use Illuminate\Foundation\Events\Dispatchable;
 | 
						|
use Illuminate\Queue\SerializesModels;
 | 
						|
 | 
						|
class ProxyStatusChanged
 | 
						|
{
 | 
						|
    use Dispatchable, InteractsWithSockets, SerializesModels;
 | 
						|
 | 
						|
    public function __construct(public $data) {}
 | 
						|
}
 |