31 lines
631 B
PHP
31 lines
631 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
/**
|
|
* Event triggered when a user's state changes
|
|
* @package App\Events
|
|
*/
|
|
class UserStateChanged
|
|
{
|
|
use Dispatchable, InteractsWithSockets, SerializesModels;
|
|
|
|
public $old_state, $user;
|
|
|
|
/**
|
|
* UserStateChanged constructor.
|
|
* @param User $user
|
|
* @param $old_state
|
|
*/
|
|
public function __construct(User $user, $old_state)
|
|
{
|
|
$this->old_state = $old_state;
|
|
$this->user = $user;
|
|
}
|
|
}
|