Module   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 2
Bugs 0 Features 0
Metric Value
wmc 1
c 2
b 0
f 0
lcom 0
cbo 1
dl 0
loc 17
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A init() 0 6 1
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