mirror of
https://github.com/pelican-dev/panel.git
synced 2026-05-04 18:00:48 +03:00
14 lines
222 B
PHP
14 lines
222 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Events\User;
|
||
|
|
|
||
|
|
use App\Models\User;
|
||
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
||
|
|
|
||
|
|
final class PasswordChanged
|
||
|
|
{
|
||
|
|
use Dispatchable;
|
||
|
|
|
||
|
|
public function __construct(public readonly User $user) {}
|
||
|
|
}
|