mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2024-11-21 01:16:35 +08:00
18 lines
253 B
PHP
18 lines
253 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Events;
|
||
|
|
||
|
use App\Models\User;
|
||
|
|
||
|
class UserProfileUpdated extends Event
|
||
|
{
|
||
|
public $type;
|
||
|
public $user;
|
||
|
|
||
|
public function __construct($type, User $user)
|
||
|
{
|
||
|
$this->type = $type;
|
||
|
$this->user = $user;
|
||
|
}
|
||
|
}
|