Completed
Push — master ( b31514...603a9f )
by Changwan
06:16
created

ServiceProvider   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A register() 0 3 1
A boot() 0 3 1
1
<?php
2
namespace Wandu\DI;
3
4
class ServiceProvider implements ServiceProviderInterface
5
{
6
    /**
7
     * {@inheritdoc}
8
     */
9
    public function register(ContainerInterface $app)
10
    {
11
    }
12
13
    /**
14
     * {@inheritdoc}
15
     */
16
    public function boot(ContainerInterface $app)
17
    {
18
    }
19
}
20