Completed
Push — master ( af65ed...6bddd0 )
by Daryl
10:04
created
includes/class-map-view.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 
13 13
     function the_map() {
14 14
 
15
-        $view = new \Clubdeuce\WPGoogleMaps\Map_View( $this->model()->map() );
15
+        $view = new \Clubdeuce\WPGoogleMaps\Map_View($this->model()->map());
16 16
 
17 17
 	    $view->the_map();
18 18
 
Please login to merge, or discard this patch.
includes/class-info-window-model.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
 	function __construct( $args = array() ) {
32 32
 
33 33
 		$args = wp_parse_args( $args, array(
34
-			'info_window' => new \Clubdeuce\WPGoogleMaps\Info_Window( $args ),
34
+			'info_window' => new \Clubdeuce\WPGoogleMaps\Info_Window($args),
35 35
 		) );
36 36
 
37 37
 		parent::__construct( $args );
Please login to merge, or discard this patch.
includes/class-location.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
 	function __construct( $args = array() ) {
33 33
 
34 34
 		$args = wp_parse_args( $args, array(
35
-			'model' => new Location_Model( array( 'location' => new \Clubdeuce\WPGoogleMaps\Location( $args ) ) ),
35
+			'model' => new Location_Model( array( 'location' => new \Clubdeuce\WPGoogleMaps\Location($args) ) ),
36 36
 		) );
37 37
 
38 38
 		parent::__construct( $args );
Please login to merge, or discard this patch.