Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
RolePlayObjections | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
newFactory | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | |
3 | namespace App\Http\Models; |
4 | |
5 | use database\factories\http\models\RolePlayObjectionsFactory; |
6 | use Illuminate\Database\Eloquent\Factories\HasFactory; |
7 | |
8 | class RolePlayObjections extends Moloquent |
9 | { |
10 | use HasFactory; |
11 | |
12 | protected $table = 'roleplay_objections'; |
13 | |
14 | protected $fillable = [ |
15 | 'category', |
16 | 'options', |
17 | 'status' |
18 | ]; |
19 | |
20 | protected static function newFactory() |
21 | { |
22 | return RolePlayObjectionsFactory::new(); |
23 | } |
24 | } |