1<?php 2 3namespace Pterodactyl\Models; 4 5use Illuminate\Database\Eloquent\Model; 6 7class Session extends Model 8{ 9 /** 10 * The table associated with the model. 11 */ 12 protected $table = 'sessions'; 13 14 /** 15 * Cast values to correct type. 16 */ 17 protected $casts = [ 18 'id' => 'string', 19 'user_id' => 'integer', 20 ]; 21} 22 23