ImageAlbumController
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 2
dl 0
loc 3
c 1
b 0
f 0
wmc 0
1
<?php
2
3
namespace app\controllers\admin\album;
4
5
use Itstructure\MFUploader\controllers\album\ImageAlbumController as BaseImageAlbumController;
6
use app\traits\{AdminBeforeActionTrait, AccessTrait};
7
8
/**
9
 * ImageAlbumController
10
 *
11
 * @author Andrey Girnik <[email protected]>
12
 */
13
class ImageAlbumController extends BaseImageAlbumController
14
{
15
    use AdminBeforeActionTrait, AccessTrait;
0 ignored issues
show
Bug introduced by
The trait app\traits\AdminBeforeActionTrait requires the property $controller which is not provided by app\controllers\admin\album\ImageAlbumController.
Loading history...
Bug introduced by
The trait app\traits\AccessTrait requires the property $user which is not provided by app\controllers\admin\album\ImageAlbumController.
Loading history...
16
}
17