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

DependencyInjection::configure()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

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 1
nc 1
nop 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