ShowController::profile()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 10

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 10
rs 9.9332
c 0
b 0
f 0
1
<?php
2
3
namespace Rudolf\Modules\Users\One\Admin\Profile;
4
5
use Rudolf\Framework\Controller\AdminController;
6
7
class ShowController extends AdminController
8
{
9
    public function profile()
10
    {
11
        new ShowModel();
12
13
        //$profileInfo = $model->getProfileInfo();
14
15
        $view = new ShowView();
16
        $view->userCard();
17
        $view->render();
18
    }
19
}
20