Completed
Push — master ( 573a09...fbd234 )
by Ryuichi
39:55 queued 38:23
created

Injected   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 1
cbo 1
dl 0
loc 9
rs 10
c 0
b 0
f 0
1
<?php
2
namespace WebStream\DI\Test;
3
4
require_once dirname(__FILE__) . '/../../Injector.php';
5
6
use WebStream\DI\Injector;
7
8
class Injected
9
{
10
    use Injector;
11
12
    public function getValue($key)
13
    {
14
        return $this->{$key};
15
    }
16
}
17