Completed
Push — AUTOMATED_TESTING ( b401db...19cb04 )
by Gordon
11:46
created
code/MapExtension.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -184,7 +184,7 @@
 block discarded – undo
184 184
 
185 185
 	/**
186 186
 	 * Access the map editing field for the purpose of adding guide points
187
-	 * @return [LatLongField] instance of location editing field
187
+	 * @return FormField instance of location editing field
188 188
 	 */
189 189
 	public function getMapField() {
190 190
 		if (!isset($this->mapField)) {
Please login to merge, or discard this patch.
code/MapAPI.php 1 patch
Doc Comments   +15 added lines, -8 removed lines patch added patch discarded remove patch
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
 	 *
164 164
 	 * @param string  $googleMapKey the googleMapKey
165 165
 	 *
166
-	 * @return void
166
+	 * @return MapAPI
167 167
 	 */
168 168
 
169 169
 	public function setKey($googleMapKey) {
@@ -171,6 +171,9 @@  discard block
 block discarded – undo
171 171
 		return $this;
172 172
 	}
173 173
 
174
+	/**
175
+	 * @param boolean $inclusion
176
+	 */
174 177
 	public function setIncludeDownloadJavascript($inclusion) {
175 178
 		self::$include_download_javascript = $inclusion;
176 179
 		return $this;
@@ -424,7 +427,7 @@  discard block
 block discarded – undo
424 427
 	 *
425 428
 	 * @param boolean $defaultHideMarker hide all the markers on the map by default
426 429
 	 *
427
-	 * @return void
430
+	 * @return MapAPI
428 431
 	 */
429 432
 
430 433
 	public function setDefaultHideMarker($defaultHideMarker) {
@@ -469,7 +472,7 @@  discard block
 block discarded – undo
469 472
 	 *
470 473
 	 * @param string  $address an address
471 474
 	 *
472
-	 * @return array array with precision, lat & lng
475
+	 * @return string array with precision, lat & lng
473 476
 	 */
474 477
 
475 478
 	public function geocoding($address) {
@@ -498,7 +501,7 @@  discard block
 block discarded – undo
498 501
 	 * @param string  $category marker category
499 502
 	 * @param string  $icon     an icon url
500 503
 	 *
501
-	 * @return void
504
+	 * @return MapAPI
502 505
 	 */
503 506
 
504 507
 	public function addMarkerByCoords($lat, $lng, $html = '', $category = '', $icon = '') {
@@ -522,7 +525,7 @@  discard block
 block discarded – undo
522 525
 	 * @param string  $category marker category
523 526
 	 * @param string  $icon     an icon url
524 527
 	 *
525
-	 * @return void
528
+	 * @return MapAPI
526 529
 	 */
527 530
 
528 531
 	public function addMarkerByAddress($address, $content = '', $category = '', $icon = '') {
@@ -540,7 +543,7 @@  discard block
 block discarded – undo
540 543
 	 * @param string  $category marker category
541 544
 	 * @param string  $icon     an icon url
542 545
 	 *
543
-	 * @return void
546
+	 * @return MapAPI
544 547
 	 */
545 548
 
546 549
 	public function addArrayMarkerByCoords($coordtab, $category = '', $icon = '') {
@@ -623,7 +626,7 @@  discard block
 block discarded – undo
623 626
 	 * @param string  $category marker category
624 627
 	 * @param string  $icon     an icon url
625 628
 	 *
626
-	 * @return void
629
+	 * @return MapAPI
627 630
 	 */
628 631
 
629 632
 	public function addArrayMarkerByAddress($coordtab, $category = '', $icon = '') {
@@ -652,7 +655,7 @@  discard block
 block discarded – undo
652 655
 	 *
653 656
 	 * @param string  $url      url of the kml file compatible with gmap and gearth
654 657
 	 *
655
-	 * @return void
658
+	 * @return MapAPI
656 659
 	 */
657 660
 
658 661
 	public function addKML($url) {
@@ -809,6 +812,10 @@  discard block
 block discarded – undo
809 812
 		return $result;
810 813
 	}
811 814
 
815
+	/**
816
+	 * @param string $templateName
817
+	 * @param ArrayData $templateVariables
818
+	 */
812 819
 	function processTemplateHTML($templateName, $templateVariables = null) {
813 820
 		if (!$templateVariables) {
814 821
 			$templateVariables = new ArrayList();
Please login to merge, or discard this patch.