<?php12namespace Pterodactyl\Models;34use Illuminate\Database\Eloquent\Relations\BelongsTo;56/**7* @property int $id8* @property int $user_id9* @property string $token10* @property \Carbon\CarbonImmutable $created_at11* @property User $user12*/13class RecoveryToken extends Model14{15/**16* There are no updates to this model, only inserts and deletes.17*/18public const UPDATED_AT = null;1920public $timestamps = true;2122protected bool $immutableDates = true;2324public static array $validationRules = [25'token' => 'required|string',26];2728public function user(): BelongsTo29{30return $this->belongsTo(User::class);31}32}333435