Test Failed
Push — master ( e3c39f...fe570d )
by Mihail
07:20
created

Apps/Controller/Admin/Profile.php (1 issue)

1
<?php
2
3
namespace Apps\Controller\Admin;
4
5
use Apps\Model\Admin\Profile\FormSettings;
6
use Extend\Core\Arch\AdminController;
7
use Ffcms\Core\App;
8
9
/**
10
 * Class Profile. Admin controller of profile application.
11
 * @package Apps\Controller\Admin
12
 */
13
class Profile extends AdminController
14
{
15
    const VERSION = '1.0.1';
16
    const ITEM_PER_PAGE = 10;
17
18
    public $type = 'app';
19
20
    /** Import heavy actions */
21
    use Profile\ActionIndex {
22
        index as actionIndex;
23
    }
24
25
    use Profile\ActionUpdate {
0 ignored issues
show
The trait Apps\Controller\Admin\Profile\ActionUpdate requires some properties which are not provided by Apps\Controller\Admin\Profile: $user_id, $user
Loading history...
26
        profileUpdate as actionUpdate;
27
    }
28
29
    use Profile\ActionFieldList {
30
        profileFieldList as actionFieldlist;
31
    }
32
33
    use Profile\ActionFieldUpdate {
34
        profileFieldUpdate as actionFieldupdate;
35
    }
36
37
    use Profile\ActionFieldDelete {
38
        profileFieldDelete as actionFielddelete;
39
    }
40
41
    use Profile\ActionSettings {
42
        settings as actionSettings;
43
    }
44
}
45