This repository has been archived on 2025-05-09. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Astral-nook/app/Events/Auth/ProvidedAuthenticationToken.php
2022-05-28 17:03:58 -04:00

18 lines
309 B
PHP

<?php
namespace Pterodactyl\Events\Auth;
use Pterodactyl\Models\User;
class ProvidedAuthenticationToken
{
public User $user;
public bool $recovery;
public function __construct(User $user, bool $recovery = false)
{
$this->user = $user;
$this->recovery = $recovery;
}
}