Total Complexity | 2 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
21 | class CodeData extends Model |
||
22 | { |
||
23 | // Public Properties |
||
24 | // ========================================================================= |
||
25 | |||
26 | /** |
||
27 | * @var string The value of the Code Editor field |
||
28 | */ |
||
29 | public $value; |
||
30 | |||
31 | /** |
||
32 | * @var string The language of the Code Editor field |
||
33 | */ |
||
34 | public $language; |
||
35 | |||
36 | // Public Methods |
||
37 | // ========================================================================= |
||
38 | |||
39 | /** |
||
40 | * @inheritdoc |
||
41 | */ |
||
42 | public function init() |
||
43 | { |
||
44 | parent::init(); |
||
45 | } |
||
46 | |||
47 | /** |
||
48 | * @inheritdoc |
||
49 | */ |
||
50 | public function rules(): array |
||
59 | } |
||
60 | } |
||
61 |