Completed
Pull Request — master (#22)
by Daryl
01:32
created
includes/class-location.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -24,19 +24,19 @@
 block discarded – undo
24 24
  */
25 25
 class Location extends \WPLib_Item_Base {
26 26
 
27
-	/**
28
-	 * Location constructor.
29
-	 *
30
-	 * @param array $args
31
-	 */
32
-	function __construct( $args = array() ) {
27
+    /**
28
+     * Location constructor.
29
+     *
30
+     * @param array $args
31
+     */
32
+    function __construct( $args = array() ) {
33 33
 
34
-		$args = wp_parse_args( $args, array(
35
-			'model' => new Location_Model( array( 'location' => new \Clubdeuce\WPGoogleMaps\Location( $args ) ) ),
36
-		) );
34
+        $args = wp_parse_args( $args, array(
35
+            'model' => new Location_Model( array( 'location' => new \Clubdeuce\WPGoogleMaps\Location( $args ) ) ),
36
+        ) );
37 37
 
38
-		parent::__construct( $args );
38
+        parent::__construct( $args );
39 39
 
40
-	}
40
+    }
41 41
 
42 42
 }
Please login to merge, or discard this patch.
includes/class-marker.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -20,20 +20,20 @@
 block discarded – undo
20 20
  */
21 21
 class Marker extends \WPLib_Item_Base {
22 22
 
23
-	/**
24
-	 * Marker_Model constructor.
25
-	 *
26
-	 * @param array $args
27
-	 */
28
-	function __construct( $args = array() ) {
23
+    /**
24
+     * Marker_Model constructor.
25
+     *
26
+     * @param array $args
27
+     */
28
+    function __construct( $args = array() ) {
29 29
 
30
-		$args = wp_parse_args( $args, array(
31
-			'model' => new Marker_Model( array( 'marker' => new \Clubdeuce\WPGoogleMaps\Marker( $args ) ) ),
32
-		) );
30
+        $args = wp_parse_args( $args, array(
31
+            'model' => new Marker_Model( array( 'marker' => new \Clubdeuce\WPGoogleMaps\Marker( $args ) ) ),
32
+        ) );
33 33
 
34
-		parent::__construct( $args );
34
+        parent::__construct( $args );
35 35
 
36
-	}
36
+    }
37 37
 
38 38
 
39 39
 }
Please login to merge, or discard this patch.
includes/class-map.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -22,19 +22,19 @@
 block discarded – undo
22 22
  */
23 23
 class Map extends \WPLib_Item_Base {
24 24
 
25
-	/**
26
-	 * Map_Model constructor.
27
-	 *
28
-	 * @param array $args
29
-	 */
30
-	function __construct( $args = array() ) {
25
+    /**
26
+     * Map_Model constructor.
27
+     *
28
+     * @param array $args
29
+     */
30
+    function __construct( $args = array() ) {
31 31
 
32
-		$args = wp_parse_args( $args, array(
33
-			'model' => new Map_Model( array( 'map' => new \Clubdeuce\WPGoogleMaps\Map( $args ) ) ),
34
-		) );
32
+        $args = wp_parse_args( $args, array(
33
+            'model' => new Map_Model( array( 'map' => new \Clubdeuce\WPGoogleMaps\Map( $args ) ) ),
34
+        ) );
35 35
 
36
-		parent::__construct( $args );
36
+        parent::__construct( $args );
37 37
 
38
-	}
38
+    }
39 39
 
40 40
 }
41 41
\ No newline at end of file
Please login to merge, or discard this patch.