Completed
Push — master ( 7c9ea3...0ee653 )
by Tobias
06:19 queued 04:00
created

Module::getControllers()   A

Complexity

Conditions 4
Paths 6

Size

Total Lines 16
Code Lines 10

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 16
rs 9.2
cc 4
eloc 10
nc 6
nop 1
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