Total Complexity | 2 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | abstract class AbstractValuableElement extends AbstractHtmlElement |
||
8 | { |
||
9 | /** |
||
10 | * @var mixed |
||
11 | */ |
||
12 | protected $value; |
||
13 | |||
14 | /** |
||
15 | * @return mixed |
||
16 | */ |
||
17 | public function getValue() |
||
18 | { |
||
19 | return $this->value; |
||
20 | } |
||
21 | |||
22 | /** |
||
23 | * @param mixed $value |
||
24 | * |
||
25 | * @return $this |
||
26 | */ |
||
27 | public function setValue($value): AbstractValuableElement |
||
32 | } |
||
33 | } |
||
34 |