AbstractValue::__construct()
last analyzed

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
c 0
b 0
f 0
ccs 0
cts 0
cp 0
nc 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
abstract class AbstractValue implements ValueInterface
11
{
12
    /** @var mixed $value */
13
    protected $value;
14
15
    /**
16
     * @return mixed
17
     */
18 3
    public function getValue()
19
    {
20 3
        return $this->value;
21
    }
22
23
    abstract public function __construct($value);
24
}