Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
ShortcutSharedLinks | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
boot | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | |
3 | namespace App\Http\Models; |
4 | |
5 | class ShortcutSharedLinks extends Moloquent |
6 | { |
7 | protected $table = 'shortcut_shared_links'; |
8 | |
9 | protected $fillable = [ |
10 | 'shortcut_id', 'link', |
11 | ]; |
12 | |
13 | protected static function boot() |
14 | { |
15 | parent::boot(); |
16 | } |
17 | } |