Total Complexity | 4 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
6 | abstract class GeometryObject |
||
7 | { |
||
8 | protected ?string $title = null; |
||
9 | protected ?string $featureClass = null; |
||
10 | |||
11 | 1 | public function setTitle(?string $title): self |
|
12 | { |
||
13 | 1 | $this->title = $title; |
|
14 | |||
15 | 1 | return $this; |
|
16 | } |
||
17 | |||
18 | 1 | public function getTitle(): ?string |
|
21 | } |
||
22 | |||
23 | 1 | public function setFeatureClass(string $featureClass): self |
|
24 | { |
||
25 | 1 | $this->featureClass = $featureClass; |
|
26 | |||
27 | 1 | return $this; |
|
28 | } |
||
29 | |||
30 | 1 | public function getFeatureClass(): ?string |
|
33 | } |
||
34 | } |
||
35 |