1 | <?php |
||
15 | class GeoNode extends AbstractModel |
||
16 | { |
||
17 | |||
18 | /** |
||
19 | * The Geo format: kml, kmz or georss |
||
20 | * |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $format; |
||
24 | |||
25 | /** |
||
26 | * Get format |
||
27 | * |
||
28 | * @return string |
||
29 | */ |
||
30 | public function getFormat() |
||
34 | |||
35 | /** |
||
36 | * Set format |
||
37 | * |
||
38 | * @param string $format |
||
39 | * |
||
40 | * @throws InvalidArgumentValueException |
||
41 | */ |
||
42 | public function setFormat($format) |
||
58 | } |
||
59 |