Total Complexity | 3 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | abstract class UserSettingsJoint extends ModuleJoint |
||
10 | { |
||
11 | use HasOptions; |
||
12 | use HasLaunchButton; |
||
13 | |||
14 | /** |
||
15 | * Define group under which the settings are saved |
||
16 | * |
||
17 | * @var string |
||
18 | */ |
||
19 | protected $group; |
||
20 | |||
21 | /** |
||
22 | * Get the group under which settings are saved |
||
23 | * |
||
24 | * @return string |
||
25 | */ |
||
26 | public function group() |
||
27 | { |
||
28 | return $this->group?: static::class; |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * Define the settings view |
||
33 | */ |
||
34 | public function link() { |
||
36 | } |
||
37 | } |