DataMapperManagerConfig   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Test Coverage

Coverage 100%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getEntityDataMapperMap() 0 4 2
1
<?php
2
/**
3
 * @author Stefano Torresi (http://stefanotorresi.it)
4
 * @license See the file LICENSE.txt for copying permission.
5
 * ************************************************
6
 */
7
8
namespace Thorr\Persistence\DataMapper\Manager;
9
10
use Zend\ServiceManager\Config;
11
12
class DataMapperManagerConfig extends Config
13
{
14 9
    public function getEntityDataMapperMap()
15
    {
16 9
        return (isset($this->config['entity_data_mapper_map'])) ? $this->config['entity_data_mapper_map'] : null;
17
    }
18
}
19