Total Complexity | 7 |
Total Lines | 49 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class ConfigValue |
||
10 | { |
||
11 | private $id; |
||
12 | |||
13 | private $path; |
||
14 | |||
15 | private $scope; |
||
16 | |||
17 | private $value; |
||
18 | |||
19 | public function getId(): ?int |
||
22 | } |
||
23 | |||
24 | public function getPath(): ?string |
||
25 | { |
||
26 | return $this->path; |
||
27 | } |
||
28 | |||
29 | public function setPath(string $path): self |
||
30 | { |
||
31 | $this->path = $path; |
||
32 | |||
33 | return $this; |
||
34 | } |
||
35 | |||
36 | public function getScope(): ?string |
||
37 | { |
||
38 | return $this->scope; |
||
39 | } |
||
40 | |||
41 | public function setScope(string $scope): self |
||
42 | { |
||
43 | $this->scope = $scope; |
||
44 | |||
45 | return $this; |
||
46 | } |
||
47 | |||
48 | public function getValue(): ?string |
||
51 | } |
||
52 | |||
53 | public function setValue(?string $value): self |
||
54 | { |
||
55 | $this->value = $value; |
||
58 | } |
||
59 | } |