Total Complexity | 1 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
12 | class RolesController extends BaseController |
||
13 | { |
||
14 | /* |
||
15 | * fields we accept to create |
||
16 | * |
||
17 | * @var array |
||
18 | */ |
||
19 | protected $createFields = []; |
||
20 | |||
21 | /* |
||
22 | * fields we accept to create |
||
23 | * |
||
24 | * @var array |
||
25 | */ |
||
26 | protected $updateFields = []; |
||
27 | |||
28 | /** |
||
29 | * set objects |
||
30 | * |
||
31 | * @return void |
||
32 | */ |
||
33 | public function onConstruct() |
||
44 |