Completed
Branch develop (9f43d2)
by Filipe
05:14
created

DryClass   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A setValue() 0 4 1
1
<?php
2
3
namespace spec\Slick\Di;
4
5
class DryClass
6
{
7
    public $value;
8
9
    /**
10
     * @inject injectedValue
11
     *
12
     * @param $value
13
     */
14
    public function setValue($value)
15
    {
16
        $this->value = $value;
17
    }
18
}