Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | class AssignSwitchesForm extends Hub implements AssignSwitchInterface |
||
10 | { |
||
11 | use ModelTrait; |
||
12 | |||
13 | public $switchVariants = ['net', 'kvm', 'pdu', 'rack', 'console']; |
||
14 | |||
15 | /** |
||
16 | * @inheritdoc |
||
17 | */ |
||
18 | public static function tableName() |
||
19 | { |
||
20 | return 'hub'; |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * @inheritdoc |
||
25 | */ |
||
26 | public function rules() |
||
29 | } |
||
30 | } |
||
31 |