Completed
Pull Request — master (#131)
by Kevin
03:34
created

BypassConfigurationProvider   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A configureObject() 0 4 1
A configureDi() 0 4 1
1
<?php
2
3
namespace Magium\Util\Configuration;
4
5
use Zend\Di\Di;
6
7
class BypassConfigurationProvider implements ConfigurationProviderInterface
8
{
9
    
10
    public function configureObject(ConfigurableObjectInterface $obj)
11
    {
12
        return;
13
    }
14
15
    public function configureDi(Di $di)
16
    {
17
        return;
18
    }
19
20
}