Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | class AssignSwitchesForm extends Hub implements AssignSwitchInterface |
||
18 | { |
||
19 | use ModelTrait; |
||
20 | |||
21 | protected $switchVariants = ['net', 'kvm', 'pdu', 'rack', 'console', 'location']; |
||
22 | |||
23 | /** |
||
24 | * {@inheritdoc} |
||
25 | */ |
||
26 | public static function tableName() |
||
27 | { |
||
28 | return 'hub'; |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | public function rules() |
||
37 | } |
||
38 | } |
||
39 |