Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
LogoutHistory | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
1 | <?php |
2 | |
3 | namespace App\Http\Models\Auth; |
4 | |
5 | use App\Http\Models\Moloquent; |
6 | |
7 | class LogoutHistory extends Moloquent { |
8 | |
9 | /** |
10 | * The table associated with the model. |
11 | * |
12 | * @var string |
13 | */ |
14 | protected $table = 'logout_history'; |
15 | |
16 | /** |
17 | * The attributes that are mass assignable. |
18 | * |
19 | * @var array |
20 | */ |
21 | protected $fillable = [ |
22 | 'user_id', 'email', 'description', 'selected_reason_for_signout' |
23 | ]; |
24 | } |