| Total Complexity | 3 |
| Total Lines | 54 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | class User extends AdminController |
||
| 16 | { |
||
| 17 | const VERSION = '1.0.1'; |
||
| 18 | const ITEM_PER_PAGE = 10; |
||
| 19 | |||
| 20 | public $type = 'app'; |
||
| 21 | |||
| 22 | use User\ActionIndex { |
||
|
|
|||
| 23 | index as actionIndex; |
||
| 24 | } |
||
| 25 | |||
| 26 | use User\ActionUpdate { |
||
| 27 | update as actionUpdate; |
||
| 28 | } |
||
| 29 | |||
| 30 | use User\ActionDelete { |
||
| 31 | delete as actionDelete; |
||
| 32 | } |
||
| 33 | |||
| 34 | use User\ActionInvite { |
||
| 35 | invite as actionInvite; |
||
| 36 | } |
||
| 37 | |||
| 38 | use User\ActionRoleList { |
||
| 39 | listing as actionRolelist; |
||
| 40 | } |
||
| 41 | |||
| 42 | use User\ActionRoleUpdate { |
||
| 43 | roleUpdate as actionRoleupdate; |
||
| 44 | } |
||
| 45 | |||
| 46 | /** |
||
| 47 | * User identity settings |
||
| 48 | * @return string|null |
||
| 49 | * @throws \Ffcms\Core\Exception\SyntaxException |
||
| 50 | */ |
||
| 51 | public function actionSettings(): ?string |
||
| 72 |