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