Completed
Push — AUTOMATED_TESTING ( 38d0da...9cc382 )
by Gordon
11:40
created
code/MapField.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Map field to point for pois langitude and longitude positioning
4
- */
3
+	 * Map field to point for pois langitude and longitude positioning
4
+	 */
5 5
 class MapField extends DatalessField {
6 6
 
7 7
 		/**
Please login to merge, or discard this patch.
code/Mappable.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Defines the interface for a mappable DataObject. Implementors of this interface
4
- * must define the following functions in order to work with the {@link GoogleMapUtil}
5
- * helper class.
6
- *
7
- * @author Uncle Cheese
8
- * @package mappable
9
- */
3
+	 * Defines the interface for a mappable DataObject. Implementors of this interface
4
+	 * must define the following functions in order to work with the {@link GoogleMapUtil}
5
+	 * helper class.
6
+	 *
7
+	 * @author Uncle Cheese
8
+	 * @package mappable
9
+	 */
10 10
 interface Mappable {
11 11
 
12 12
 	/**
Please login to merge, or discard this patch.
code/MapAPI.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -397,10 +397,10 @@
 block discarded – undo
397 397
 	}
398 398
 
399 399
 	/**
400
-	* Set the center of the gmap
401
-	*
402
-	* @return MapAPI This same object, in order to enable chaining of methods
403
-	**/
400
+	 * Set the center of the gmap
401
+	 *
402
+	 * @return MapAPI This same object, in order to enable chaining of methods
403
+	 **/
404 404
 	public function setLatLongCenter($center) {
405 405
 		$this->latLongCenter = $center;
406 406
 		return $this;
Please login to merge, or discard this patch.