theloftstore/app/Events/User/TwoFactorEnabledByAdmin.php
2025-02-26 08:57:46 +01:00

18 lines
237 B
PHP

<?php
namespace Vanguard\Events\User;
use Vanguard\User;
class TwoFactorEnabledByAdmin
{
public function __construct(protected User $user)
{
}
public function getUser(): User
{
return $this->user;
}
}