1 | <?php |
||
4 | trait GeoDataTrait |
||
5 | { |
||
6 | |||
7 | /** |
||
8 | * @var float |
||
9 | */ |
||
10 | public $latitude; |
||
11 | |||
12 | /** |
||
13 | * @var float |
||
14 | */ |
||
15 | public $longitude; |
||
16 | |||
17 | |||
18 | /** |
||
19 | * @return float |
||
20 | */ |
||
21 | 8 | public function getLatitude() |
|
25 | |||
26 | /** |
||
27 | * @return float |
||
28 | */ |
||
29 | 8 | public function getLongitude() |
|
33 | |||
34 | |||
35 | /** |
||
36 | * @return array[float] |
||
|
|||
37 | */ |
||
38 | 8 | public function getLatLon() |
|
45 | |||
46 | } |
||
47 |
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.