Module   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getConfig() 0 4 1
1
<?php
2
3
namespace ZFBrasil\DoctrineMoneyModule;
4
5
use Zend\ModuleManager\Feature\ConfigProviderInterface;
6
7
/**
8
 * @author Fábio Carneiro <[email protected]>
9
 * @license MIT
10
 */
11
class Module implements ConfigProviderInterface
12
{
13
    /**
14
     * {@inheritdoc}
15
     */
16
    public function getConfig()
17
    {
18
        return require __DIR__.'/../config/module.config.php';
19
    }
20
}
21