Completed
Pull Request — master (#22)
by Daryl
03:27
created
includes/class-marker-model.php 1 patch
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 WPMarker
16
-	 */
14
+    /**
15
+     * @var WPMarker
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.
includes/class-model-base.php 1 patch
Indentation   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -8,41 +8,41 @@
 block discarded – undo
8 8
  */
9 9
 class Model_Base extends \WPLib_Model_Base {
10 10
 
11
-	/**
12
-	 * @param $property
13
-	 *
14
-	 * @return bool
15
-	 */
16
-	protected function _has( $property ) {
11
+    /**
12
+     * @param $property
13
+     *
14
+     * @return bool
15
+     */
16
+    protected function _has( $property ) {
17 17
 
18
-		$has = false;
18
+        $has = false;
19 19
 
20
-		if ( isset( $this->{$property} ) ) {
21
-			$has = true;
22
-		}
20
+        if ( isset( $this->{$property} ) ) {
21
+            $has = true;
22
+        }
23 23
 
24
-		return $has;
24
+        return $has;
25 25
 
26
-	}
26
+    }
27 27
 
28
-	/**
29
-	 * @param string $method_name
30
-	 * @param array $args
31
-	 *
32
-	 * @return null
33
-	 */
34
-	function __call( $method_name, $args ) {
28
+    /**
29
+     * @param string $method_name
30
+     * @param array $args
31
+     *
32
+     * @return null
33
+     */
34
+    function __call( $method_name, $args ) {
35 35
 
36
-		$value = null;
36
+        $value = null;
37 37
 
38
-		if ( property_exists( $this, "_{$method_name}" ) ) {
39
-			$property = "_{$method_name}";
40
-			$value = $this->{$property};
38
+        if ( property_exists( $this, "_{$method_name}" ) ) {
39
+            $property = "_{$method_name}";
40
+            $value = $this->{$property};
41 41
 
42
-		}
42
+        }
43 43
 
44
-		return $value;
44
+        return $value;
45 45
 
46
-	}
46
+    }
47 47
 
48 48
 }
Please login to merge, or discard this patch.
includes/class-map-model.php 1 patch
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 WPMap
17
-	 */
18
-	protected $_map;
15
+    /**
16
+     * @var WPMap
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.