mirror of
https://github.com/pelican-dev/panel.git
synced 2026-05-04 18:00:48 +03:00
Co-authored-by: DaneEveritt <dane@daneeveritt.com> Co-authored-by: danny6167 <danielb@purpleflaghosting.com> Co-authored-by: MrSoulPenguin <28676680+MrSoulPenguin@users.noreply.github.com>
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) {}
|
|
}
|