Module   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A init() 0 6 1
1
<?php
2
3
namespace api\modules\v1;
4
5
class Module extends \yii\base\Module
6
{
7
    public $controllerNamespace = 'api\modules\v1\controllers';
8
9
    public function init()
10
    {
11
        parent::init();
12
13
        // custom initialization code goes here
14
    }
15
}
16