Module::init()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 6
rs 9.4285
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
/**
3
 * @link      http://www.writesdown.com/
4
 * @copyright Copyright (c) 2015 WritesDown
5
 * @license   http://www.writesdown.com/license/
6
 */
7
8
namespace modules\feed\frontend;
9
10
/**
11
 * Class Module
12
 *
13
 * @author  Agiel K. Saputra <[email protected]>
14
 * @since   0.2.0
15
 */
16
class Module extends \yii\base\Module
17
{
18
    /**
19
     * @var string
20
     */
21
    public $controllerNamespace = 'modules\feed\frontend\controllers';
22
23
    /**
24
     * @inheritdoc
25
     */
26
    public function init()
27
    {
28
        parent::init();
29
30
        // custom initialization code goes here
31
    }
32
}
33