Completed
Push — master ( 840382...96750c )
by
unknown
07:37
created

DependencyInjection   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A configure() 0 4 1
1
<?php
0 ignored issues
show
Coding Style introduced by
End of line character is invalid; expected "\n" but found "\r\n"
Loading history...
2
/**
3
 * Created by PhpStorm.
4
 * User: molodyko
5
 * Date: 06.09.2016
6
 * Time: 12:31
7
 */
8
namespace samsoncms\api;
9
10
use samsonframework\container\ContainerConfigurableInterface;
11
use samsonframework\container\definition\builder\DefinitionBuilder;
12
13
class DependencyInjection implements ContainerConfigurableInterface
14
{
15
    public function configure(DefinitionBuilder $builder)
16
    {
17
18
    }
19
}
20