Total Complexity | 2 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
19 | class EnumValueDefinition implements |
||
20 | DefinitionInterface, |
||
21 | DeprecateInterface |
||
22 | { |
||
23 | use DefinitionTrait; |
||
24 | use DeprecateTrait; |
||
25 | |||
26 | /** |
||
27 | * @var mixed |
||
28 | */ |
||
29 | protected $value; |
||
30 | |||
31 | /** |
||
32 | * @return mixed |
||
33 | */ |
||
34 | 1 | public function getValue() |
|
35 | { |
||
36 | 1 | return $this->value; |
|
37 | } |
||
38 | |||
39 | /** |
||
40 | * @param mixed $value |
||
41 | */ |
||
42 | 1 | public function setValue($value) |
|
45 | 1 | } |
|
46 | } |
||
47 |