Total Complexity | 4 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 3 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
13 | class MonitoringSettings extends \hipanel\base\Model |
||
14 | { |
||
15 | const SCENARIO_DEFAULT = 'dumb'; |
||
16 | |||
17 | public static function tableName() |
||
18 | { |
||
19 | return 'device'; |
||
20 | } |
||
21 | |||
22 | public function rules() |
||
23 | { |
||
24 | return [ |
||
25 | [['id', 'nic_media', 'channel_load'], 'integer'], |
||
26 | [['watch_trafdown', 'vcdn_only'], 'boolean'], |
||
27 | [['server', 'emails', 'minutes', 'comment'], 'string'], |
||
28 | ]; |
||
29 | } |
||
30 | |||
31 | public static function primaryKey() |
||
34 | } |
||
35 | |||
36 | public function scenarioActions() |
||
40 | ]; |
||
41 | } |
||
43 |