Total Complexity | 4 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
5 | class Configuration |
||
6 | { |
||
7 | private $type; |
||
8 | |||
9 | private $sourceType; |
||
10 | |||
11 | private $value; |
||
12 | |||
13 | 12 | public function __construct(string $type, string $sourceType, string $value) |
|
18 | 12 | } |
|
19 | |||
20 | 11 | public function getType(): string |
|
21 | { |
||
22 | 11 | return $this->type; |
|
23 | } |
||
24 | |||
25 | 12 | public function getSourceType(): string |
|
26 | { |
||
27 | 12 | return $this->sourceType; |
|
28 | } |
||
29 | |||
30 | 12 | public function getValue(): string |
|
33 | } |
||
34 | } |
||
35 |