NullResourceInjector   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
lcom 0
cbo 0
dl 0
loc 8
ccs 2
cts 2
cp 1
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A injectResources() 0 4 1
1
<?php
2
3
/*
4
 * To change this license header, choose License Headers in Project Properties.
5
 * To change this template file, choose Tools | Templates
6
 * and open the template in the editor.
7
 */
8
9
namespace Governor\Framework\Saga;
10
11
/**
12
 * Description of NullResourceInjector
13
 *
14
 * @author david
15
 */
16
class NullResourceInjector implements ResourceInjectorInterface
17
{
18 22
    public function injectResources(SagaInterface $saga)
19
    {
20
        
21 22
    }
22
23
}
24