| 1 | <?php |
||
| 15 | class UserRolesController extends BaseController |
||
| 16 | { |
||
| 17 | /* |
||
| 18 | * fields we accept to create |
||
| 19 | * |
||
| 20 | * @var array |
||
| 21 | */ |
||
| 22 | protected $createFields = []; |
||
| 23 | |||
| 24 | /* |
||
| 25 | * fields we accept to create |
||
| 26 | * |
||
| 27 | * @var array |
||
| 28 | */ |
||
| 29 | protected $updateFields = []; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * set objects. |
||
| 33 | * |
||
| 34 | * @return void |
||
| 35 | */ |
||
| 36 | public function onConstruct() |
||
| 44 | } |
||
| 45 |