Total Complexity | 4 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class UserMessageLocation extends Event implements Contract |
||
14 | { |
||
15 | public function getLatitude(): ?float |
||
16 | { |
||
17 | return $this->getMessage('Location_X'); |
||
|
|||
18 | } |
||
19 | |||
20 | public function getLongitude(): ?float |
||
21 | { |
||
22 | return $this->getMessage('Location_Y'); |
||
23 | } |
||
24 | |||
25 | public function getScale(): ?float |
||
28 | } |
||
29 | |||
30 | public function getLabel(): ?string |
||
33 | } |
||
34 | } |
||
35 |