Completed
Push — master ( 53af55...12808e )
by Kevin
07:37 queued 03:31
created

BypassConfigurationProvider::configureDi()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 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
}