Total Complexity | 1 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
17 | class CustomFieldsController extends BaseController |
||
18 | { |
||
19 | /* |
||
20 | * fields we accept to create |
||
21 | * |
||
22 | * @var array |
||
23 | */ |
||
24 | protected $createFields = ['name', 'custom_fields_modules_id', 'fields_type_id']; |
||
25 | |||
26 | /* |
||
27 | * fields we accept to create |
||
28 | * |
||
29 | * @var array |
||
30 | */ |
||
31 | protected $updateFields = ['name', 'custom_fields_modules_id', 'fields_type_id']; |
||
32 | |||
33 | /** |
||
34 | * set objects |
||
35 | * |
||
36 | * @return void |
||
37 | */ |
||
38 | public function onConstruct() |
||
51 |