Completed
Push — master ( 7c9ea3...0ee653 )
by Tobias
03:59
created

Module::getMenuItems()   B

Complexity

Conditions 6
Paths 6

Size

Total Lines 31
Code Lines 22

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 31
rs 8.439
cc 6
eloc 22
nc 6
nop 0
1
<?php
2
3
namespace app\modules\backend;
4
5
/*
6
 * @link http://www.diemeisterei.de/
7
 *
8
 * @copyright Copyright (c) 2014 diemeisterei GmbH, Stuttgart
9
 *
10
 * For the full copyright and license information, please view the LICENSE
11
 * file that was distributed with this source code.
12
 */
13
14
use yii\helpers\ArrayHelper;
15
16
/**
17
 * Class Module.
18
 *
19
 * @author Tobias Munk <[email protected]>
20
 */
21
class Module extends \yii\base\Module
22
{
23
24
}
25