Completed
Pull Request — master (#22)
by Daryl
02:28
created
includes/class-location-model.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
 			    break;
64 64
 		    }
65 65
 
66
-		    if ( ! isset( $this->_location ) ) {
66
+		    if ( !isset($this->_location) ) {
67 67
 		    	break;
68 68
 		    }
69 69
 
Please login to merge, or discard this patch.
includes/class-marker-label-model.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
 				break;
38 38
 			}
39 39
 
40
-			if ( ! isset( $this->_label ) ) {
40
+			if ( !isset($this->_label) ) {
41 41
 				break;
42 42
 			}
43 43
 
Please login to merge, or discard this patch.
includes/class-map-model.php 1 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-marker-model.php 1 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.
includes/class-model-base.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 
18 18
 		$has = false;
19 19
 
20
-		if ( isset( $this->{$property} ) ) {
20
+		if ( isset($this->{$property} ) ) {
21 21
 			$has = true;
22 22
 		}
23 23
 
Please login to merge, or discard this patch.