Completed
Pull Request — master (#22)
by Daryl
01:36
created
includes/class-map-model.php 2 patches
Indentation   +31 added lines, -31 removed lines patch added patch discarded remove patch
@@ -12,45 +12,45 @@
 block discarded – undo
12 12
  */
13 13
 class Map_Model extends Model_Base {
14 14
 
15
-	/**
16
-	 * @var Map
17
-	 */
18
-	protected $_map;
15
+    /**
16
+     * @var Map
17
+     */
18
+    protected $_map;
19 19
 
20
-	/**
21
-	 * @return bool
22
-	 */
23
-	function has_map() {
20
+    /**
21
+     * @return bool
22
+     */
23
+    function has_map() {
24 24
 
25
-		return $this->_has('_map' );
25
+        return $this->_has('_map' );
26 26
 
27
-	}
27
+    }
28 28
 
29
-	/**
30
-	 * @param  string $method_name
31
-	 * @param  array  $args
32
-	 *
33
-	 * @return mixed
34
-	 */
35
-	function __call( $method_name, $args = array() ) {
36
-		$value = null;
29
+    /**
30
+     * @param  string $method_name
31
+     * @param  array  $args
32
+     *
33
+     * @return mixed
34
+     */
35
+    function __call( $method_name, $args = array() ) {
36
+        $value = null;
37 37
 
38
-		do {
38
+        do {
39 39
 
40
-			if ( property_exists( $this, "_{$method_name}" ) ) {
41
-				$property = "_{$method_name}";
42
-				$value = $this->{$property};
43
-				break;
44
-			}
40
+            if ( property_exists( $this, "_{$method_name}" ) ) {
41
+                $property = "_{$method_name}";
42
+                $value = $this->{$property};
43
+                break;
44
+            }
45 45
 
46
-			if ( ! isset( $this->_map ) ) {
47
-				break;
48
-			}
46
+            if ( ! isset( $this->_map ) ) {
47
+                break;
48
+            }
49 49
 
50
-			$value = call_user_func_array( array( $this->_map, $method_name ), $args );
50
+            $value = call_user_func_array( array( $this->_map, $method_name ), $args );
51 51
 
52
-		} while ( false );
52
+        } while ( false );
53 53
 
54
-		return $value;
55
-	}
54
+        return $value;
55
+    }
56 56
 }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
 	 */
23 23
 	function has_map() {
24 24
 
25
-		return $this->_has('_map' );
25
+		return $this->_has( '_map' );
26 26
 
27 27
 	}
28 28
 
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
 				break;
44 44
 			}
45 45
 
46
-			if ( ! isset( $this->_map ) ) {
46
+			if ( !isset($this->_map) ) {
47 47
 				break;
48 48
 			}
49 49
 
Please login to merge, or discard this patch.
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.
includes/class-marker-model.php 2 patches
Indentation   +49 added lines, -49 removed lines patch added patch discarded remove patch
@@ -11,75 +11,75 @@
 block discarded – undo
11 11
  */
12 12
 class Marker_Model extends Model_Base {
13 13
 
14
-	/**
15
-	 * @var \Clubdeuce\WPGoogleMaps\Marker
16
-	 */
14
+    /**
15
+     * @var \Clubdeuce\WPGoogleMaps\Marker
16
+     */
17 17
     protected $_marker;
18 18
 
19
-	/**
20
-	 * @return bool
21
-	 */
22
-	function has_marker() {
19
+    /**
20
+     * @return bool
21
+     */
22
+    function has_marker() {
23 23
 
24
-		return $this->_has( '_marker' );
24
+        return $this->_has( '_marker' );
25 25
 
26
-	}
26
+    }
27 27
 
28
-	/**
29
-	 * @return Location
30
-	 */
31
-	function location() {
28
+    /**
29
+     * @return Location
30
+     */
31
+    function location() {
32 32
 
33
-		return new Location( array( 'location' => $this->marker()->location() ) );
33
+        return new Location( array( 'location' => $this->marker()->location() ) );
34 34
 
35
-	}
35
+    }
36 36
 
37
-	/**
38
-	 * @return Marker_Label
39
-	 */
40
-	function label() {
37
+    /**
38
+     * @return Marker_Label
39
+     */
40
+    function label() {
41 41
 
42
-		return new Marker_Label( array( 'label' => $this->marker()->label() ) );
42
+        return new Marker_Label( array( 'label' => $this->marker()->label() ) );
43 43
 
44
-	}
44
+    }
45 45
 
46
-	/**
47
-	 * @return Info_Window
48
-	 */
49
-	function info_window() {
46
+    /**
47
+     * @return Info_Window
48
+     */
49
+    function info_window() {
50 50
 
51
-		$window = new Info_Window( array( 'info_window' => $this->marker()->info_window() ) );
52
-		$window->set_position( array( 'lat' => $this->marker()->latitude(), 'lng' => $this->marker()->longitude()));
51
+        $window = new Info_Window( array( 'info_window' => $this->marker()->info_window() ) );
52
+        $window->set_position( array( 'lat' => $this->marker()->latitude(), 'lng' => $this->marker()->longitude()));
53 53
 
54
-		return $window;
54
+        return $window;
55 55
 
56
-	}
56
+    }
57 57
 
58
-	/**
59
-	 * @param string $method_name
60
-	 * @param array $args
61
-	 *
62
-	 * @return mixed|null
63
-	 */
64
-	function __call( $method_name, $args ) {
58
+    /**
59
+     * @param string $method_name
60
+     * @param array $args
61
+     *
62
+     * @return mixed|null
63
+     */
64
+    function __call( $method_name, $args ) {
65 65
 
66
-		$value = null;
66
+        $value = null;
67 67
 
68
-		do {
69
-			$value = parent::__call( $method_name, $args );
68
+        do {
69
+            $value = parent::__call( $method_name, $args );
70 70
 
71
-			if ( $value ) {
72
-				break;
73
-			}
71
+            if ( $value ) {
72
+                break;
73
+            }
74 74
 
75
-			if ( $this->has_marker() ) {
76
-				$value = call_user_func_array( array( $this->marker(), $method_name ), $args );
77
-				break;
78
-			}
79
-		} while ( false );
75
+            if ( $this->has_marker() ) {
76
+                $value = call_user_func_array( array( $this->marker(), $method_name ), $args );
77
+                break;
78
+            }
79
+        } while ( false );
80 80
 
81
-		return $value;
81
+        return $value;
82 82
 
83
-	}
83
+    }
84 84
 
85 85
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
 	function info_window() {
50 50
 
51 51
 		$window = new Info_Window( array( 'info_window' => $this->marker()->info_window() ) );
52
-		$window->set_position( array( 'lat' => $this->marker()->latitude(), 'lng' => $this->marker()->longitude()));
52
+		$window->set_position( array( 'lat' => $this->marker()->latitude(), 'lng' => $this->marker()->longitude() ) );
53 53
 
54 54
 		return $window;
55 55
 
Please login to merge, or discard this patch.