yogibook_aury_new/app/Events/User/TwoFactorEnabledByAdmin.php
2025-09-01 15:06:58 +02:00

27 lines
341 B
PHP

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