@@ -19,19 +19,19 @@ |
||
19 | 19 | */ |
20 | 20 | class Marker_Label extends \WPLib_Item_Base { |
21 | 21 | |
22 | - /** |
|
23 | - * Marker_Label constructor. |
|
24 | - * |
|
25 | - * @param array $args |
|
26 | - */ |
|
27 | - function __construct( $args = array() ) { |
|
22 | + /** |
|
23 | + * Marker_Label constructor. |
|
24 | + * |
|
25 | + * @param array $args |
|
26 | + */ |
|
27 | + function __construct( $args = array() ) { |
|
28 | 28 | |
29 | - $args = wp_parse_args( $args, array( |
|
30 | - 'model' => new Marker_Label_Model( array( 'label' => new \Clubdeuce\WPGoogleMaps\Marker_Label( $args ) ) ), |
|
31 | - ) ); |
|
29 | + $args = wp_parse_args( $args, array( |
|
30 | + 'model' => new Marker_Label_Model( array( 'label' => new \Clubdeuce\WPGoogleMaps\Marker_Label( $args ) ) ), |
|
31 | + ) ); |
|
32 | 32 | |
33 | - parent::__construct( $args ); |
|
33 | + parent::__construct( $args ); |
|
34 | 34 | |
35 | - } |
|
35 | + } |
|
36 | 36 | |
37 | 37 | } |
38 | 38 | \ No newline at end of file |
@@ -12,45 +12,45 @@ |
||
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 | } |
@@ -22,7 +22,7 @@ discard block |
||
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 |
||
43 | 43 | break; |
44 | 44 | } |
45 | 45 | |
46 | - if ( ! isset( $this->_map ) ) { |
|
46 | + if ( !isset($this->_map) ) { |
|
47 | 47 | break; |
48 | 48 | } |
49 | 49 |
@@ -24,19 +24,19 @@ |
||
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 | } |
@@ -20,20 +20,20 @@ |
||
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 | } |
@@ -22,19 +22,19 @@ |
||
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 |