Total Complexity | 1 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
20 | class EmailTemplatesVariablesController extends BaseController |
||
21 | { |
||
22 | /* |
||
23 | * fields we accept to create |
||
24 | * |
||
25 | * @var array |
||
26 | */ |
||
27 | protected $createFields = ['companies_id', 'apps_id', 'system_modules_id', 'users_id', 'name', 'value']; |
||
28 | |||
29 | /* |
||
30 | * fields we accept to create |
||
31 | * |
||
32 | * @var array |
||
33 | */ |
||
34 | protected $updateFields = ['companies_id', 'apps_id', 'system_modules_id', 'users_id', 'name', 'value']; |
||
35 | |||
36 | /** |
||
37 | * set objects |
||
38 | * |
||
39 | * @return void |
||
40 | */ |
||
41 | 2 | public function onConstruct() |
|
50 |