Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/app/Models/Session.php
7432 views
1
<?php
2
3
namespace Pterodactyl\Models;
4
5
use Illuminate\Database\Eloquent\Model;
6
7
class 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