We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Total Complexity | 1 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class Comet extends Model |
||
9 | { |
||
10 | use CrudTrait; |
||
|
|||
11 | |||
12 | /* |
||
13 | |-------------------------------------------------------------------------- |
||
14 | | GLOBAL VARIABLES |
||
15 | |-------------------------------------------------------------------------- |
||
16 | */ |
||
17 | |||
18 | protected $table = 'comets'; |
||
19 | protected $primaryKey = 'id'; |
||
20 | public $timestamps = false; |
||
21 | protected $fillable = ['user_id']; |
||
22 | protected $casts = [ |
||
23 | 'user_id' => 'integer', |
||
24 | ]; |
||
25 | // protected $hidden = []; |
||
26 | // protected $dates = []; |
||
27 | |||
28 | /* |
||
29 | |-------------------------------------------------------------------------- |
||
30 | | FUNCTIONS |
||
31 | |-------------------------------------------------------------------------- |
||
32 | */ |
||
33 | |||
34 | /* |
||
35 | |-------------------------------------------------------------------------- |
||
36 | | RELATIONS |
||
37 | |-------------------------------------------------------------------------- |
||
38 | */ |
||
39 | |||
40 | public function user() |
||
63 |