Completed
Push — master ( 64dc4d...ea22f3 )
by Derek Stephen
02:37
created

AbstractValue   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
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 13
ccs 2
cts 2
cp 1
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getValue() 0 4 1
1
<?php
2
/**
3
 * User: delboy1978uk
4
 * Date: 13/11/2016
5
 * Time: 13:23
6
 */
7
8
namespace Del\Common\Value;
9
10
11
abstract class AbstractValue
12
{
13
    /** @var mixed $value */
14
    protected $value;
15
16
    /**
17
     * @return mixed
18
     */
19 3
    public function getValue()
20
    {
21 3
        return $this->value;
22
    }
23
}