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