Completed
Pull Request — master (#22)
by Daryl
01:32
created
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.
includes/class-location-model.php 1 patch
Indentation   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -24,31 +24,31 @@  discard block
 block discarded – undo
24 24
      */
25 25
     protected $_location;
26 26
 
27
-	/**
28
-	 * Location_Model constructor.
29
-	 *
30
-	 * @param array $args
31
-	 */
32
-	function __construct( $args = array() ) {
27
+    /**
28
+     * Location_Model constructor.
29
+     *
30
+     * @param array $args
31
+     */
32
+    function __construct( $args = array() ) {
33 33
 
34
-		$location = new WPLoc( $args );
34
+        $location = new WPLoc( $args );
35 35
 
36
-		$args = wp_parse_args( $args, array(
37
-			'location' => $location,
38
-		) );
36
+        $args = wp_parse_args( $args, array(
37
+            'location' => $location,
38
+        ) );
39 39
 
40
-		parent::__construct( $args );
40
+        parent::__construct( $args );
41 41
 
42
-	}
42
+    }
43 43
 
44
-	/**
45
-	 * @return bool
46
-	 */
47
-	function has_location() {
44
+    /**
45
+     * @return bool
46
+     */
47
+    function has_location() {
48 48
 
49
-		return $this->_has( '_location' );
49
+        return $this->_has( '_location' );
50 50
 
51
-	}
51
+    }
52 52
 
53 53
     /**
54 54
      * @param  string $method_name
@@ -57,21 +57,21 @@  discard block
 block discarded – undo
57 57
     public function __call( $method_name, $args ) {
58 58
         $value = null;
59 59
 
60
-	    do {
60
+        do {
61 61
 
62
-		    if ( property_exists( $this, "_{$method_name}" ) ) {
63
-			    $property = "_{$method_name}";
64
-			    $value = $this->{$property};
65
-			    break;
66
-		    }
62
+            if ( property_exists( $this, "_{$method_name}" ) ) {
63
+                $property = "_{$method_name}";
64
+                $value = $this->{$property};
65
+                break;
66
+            }
67 67
 
68
-		    if ( ! isset( $this->_location ) ) {
69
-		    	break;
70
-		    }
68
+            if ( ! isset( $this->_location ) ) {
69
+                break;
70
+            }
71 71
 
72
-		    $value = call_user_func_array( array( $this->_location, $method_name ), $args );
72
+            $value = call_user_func_array( array( $this->_location, $method_name ), $args );
73 73
 
74
-	    } while ( false );
74
+        } while ( false );
75 75
 
76 76
         return $value;
77 77
     }
Please login to merge, or discard this patch.