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 | 33 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
8 | class PostalBoxer extends Model |
||
9 | { |
||
10 | use CrudTrait; |
||
|
|||
11 | |||
12 | /* |
||
13 | |-------------------------------------------------------------------------- |
||
14 | | GLOBAL VARIABLES |
||
15 | |-------------------------------------------------------------------------- |
||
16 | */ |
||
17 | |||
18 | protected $table = 'postalboxers'; |
||
19 | protected $primaryKey = 'id'; |
||
20 | public $timestamps = false; |
||
21 | protected $fillable = ['monster_id', 'postal_name']; |
||
22 | |||
23 | // protected $hidden = []; |
||
24 | // protected $dates = []; |
||
25 | |||
26 | /* |
||
27 | |-------------------------------------------------------------------------- |
||
28 | | FUNCTIONS |
||
29 | |-------------------------------------------------------------------------- |
||
30 | */ |
||
31 | |||
32 | /* |
||
33 | |-------------------------------------------------------------------------- |
||
34 | | RELATIONS |
||
35 | |-------------------------------------------------------------------------- |
||
36 | */ |
||
37 | |||
38 | public function monster() |
||
61 |