@@ -6,6 +6,6 @@ |
||
6 | 6 | * Class Marker_View |
7 | 7 | * @package Clubdeuce\WPLib\Components\GoogleMaps |
8 | 8 | */ |
9 | -class Marker_View extends \WPLib_View_Base { |
|
9 | +class Marker_View extends \WPLib_View_Base { |
|
10 | 10 | |
11 | 11 | } |
12 | 12 | \ No newline at end of file |
@@ -19,38 +19,38 @@ discard block |
||
19 | 19 | private $_geocoder; |
20 | 20 | |
21 | 21 | public function setUp() { |
22 | - $this->_geocoder = new Geocoder(['api_key' => '']); |
|
22 | + $this->_geocoder = new Geocoder( ['api_key' => ''] ); |
|
23 | 23 | } |
24 | 24 | |
25 | 25 | /** |
26 | 26 | * @covers ::_make_request |
27 | 27 | */ |
28 | 28 | public function testMakeRequest() { |
29 | - $url = $this->reflectionMethodInvokeArgs($this->_geocoder, '_make_url', '1600 Amphitheatre Parkway, Mountain View, CA'); |
|
30 | - $response = $this->reflectionMethodInvokeArgs($this->_geocoder, '_make_request', $url); |
|
29 | + $url = $this->reflectionMethodInvokeArgs( $this->_geocoder, '_make_url', '1600 Amphitheatre Parkway, Mountain View, CA' ); |
|
30 | + $response = $this->reflectionMethodInvokeArgs( $this->_geocoder, '_make_request', $url ); |
|
31 | 31 | |
32 | - $this->assertInternalType('array', $response); |
|
32 | + $this->assertInternalType( 'array', $response ); |
|
33 | 33 | } |
34 | 34 | |
35 | 35 | /** |
36 | 36 | * @covers ::_make_request |
37 | 37 | */ |
38 | 38 | public function testMakeRequestError404() { |
39 | - $response = $this->reflectionMethodInvokeArgs($this->_geocoder, '_make_request', 'https://maps.googleapis.com/maps/api/geo'); |
|
39 | + $response = $this->reflectionMethodInvokeArgs( $this->_geocoder, '_make_request', 'https://maps.googleapis.com/maps/api/geo' ); |
|
40 | 40 | |
41 | - $this->assertInstanceOf('WP_Error', $response); |
|
42 | - $this->assertObjectHasAttribute('errors', $response); |
|
43 | - $this->assertArrayHasKey('404', $response->errors); |
|
41 | + $this->assertInstanceOf( 'WP_Error', $response ); |
|
42 | + $this->assertObjectHasAttribute( 'errors', $response ); |
|
43 | + $this->assertArrayHasKey( '404', $response->errors ); |
|
44 | 44 | } |
45 | 45 | |
46 | 46 | /** |
47 | 47 | * @covers ::_get_data |
48 | 48 | */ |
49 | 49 | public function testGetData() { |
50 | - $url = $this->reflectionMethodInvokeArgs($this->_geocoder, '_make_url', '1600 Amphitheatre Parkway, Mountain View, CA'); |
|
51 | - $response = $this->reflectionMethodInvokeArgs($this->_geocoder, '_get_data', $url); |
|
50 | + $url = $this->reflectionMethodInvokeArgs( $this->_geocoder, '_make_url', '1600 Amphitheatre Parkway, Mountain View, CA' ); |
|
51 | + $response = $this->reflectionMethodInvokeArgs( $this->_geocoder, '_get_data', $url ); |
|
52 | 52 | |
53 | - $this->assertInternalType('array', $response); |
|
53 | + $this->assertInternalType( 'array', $response ); |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | /** |
@@ -58,26 +58,26 @@ discard block |
||
58 | 58 | * @covers ::_make_location |
59 | 59 | */ |
60 | 60 | public function testGeocode() { |
61 | - $location = $this->_geocoder->geocode('1600 Amphitheatre Parkway, Mountain View, CA'); |
|
61 | + $location = $this->_geocoder->geocode( '1600 Amphitheatre Parkway, Mountain View, CA' ); |
|
62 | 62 | |
63 | - $this->assertInstanceOf('\Clubdeuce\WPLib\Components\GoogleMaps\Location', $location); |
|
64 | - $this->assertEquals('1600 Amphitheatre Pkwy, Mountain View, CA 94043, USA', $location->address()); |
|
65 | - $this->assertEquals('1600 Amphitheatre Pkwy, Mountain View, CA 94043, USA', $location->formatted_address()); |
|
66 | - $this->assertEquals(37.422366400000001, $location->latitude()); |
|
63 | + $this->assertInstanceOf( '\Clubdeuce\WPLib\Components\GoogleMaps\Location', $location ); |
|
64 | + $this->assertEquals( '1600 Amphitheatre Pkwy, Mountain View, CA 94043, USA', $location->address() ); |
|
65 | + $this->assertEquals( '1600 Amphitheatre Pkwy, Mountain View, CA 94043, USA', $location->formatted_address() ); |
|
66 | + $this->assertEquals( 37.422366400000001, $location->latitude() ); |
|
67 | 67 | $this->assertEquals(-122.084406, $location->longitude()); |
68 | - $this->assertEquals('ChIJ2eUgeAK6j4ARbn5u_wAGqWA', $location->place_id()); |
|
69 | - $this->assertInternalType('array', $location->viewport()); |
|
70 | - $this->assertArrayHasKey('northeast', $location->viewport()); |
|
71 | - $this->assertArrayHasKey('southwest', $location->viewport()); |
|
72 | - $this->assertInternalType('array', $location->viewport()['northeast']); |
|
73 | - $this->assertArrayHasKey('lat', $location->viewport()['northeast']); |
|
74 | - $this->assertArrayHasKey('lng', $location->viewport()['northeast']); |
|
75 | - $this->assertEquals(37.423715380291497, $location->viewport()['northeast']['lat']); |
|
68 | + $this->assertEquals( 'ChIJ2eUgeAK6j4ARbn5u_wAGqWA', $location->place_id() ); |
|
69 | + $this->assertInternalType( 'array', $location->viewport() ); |
|
70 | + $this->assertArrayHasKey( 'northeast', $location->viewport() ); |
|
71 | + $this->assertArrayHasKey( 'southwest', $location->viewport() ); |
|
72 | + $this->assertInternalType( 'array', $location->viewport()['northeast'] ); |
|
73 | + $this->assertArrayHasKey( 'lat', $location->viewport()['northeast'] ); |
|
74 | + $this->assertArrayHasKey( 'lng', $location->viewport()['northeast'] ); |
|
75 | + $this->assertEquals( 37.423715380291497, $location->viewport()['northeast']['lat'] ); |
|
76 | 76 | $this->assertEquals(-122.08305701970851, $location->viewport()['northeast']['lng']); |
77 | - $this->assertInternalType('array', $location->viewport()['southwest']); |
|
78 | - $this->assertArrayHasKey('lat', $location->viewport()['southwest']); |
|
79 | - $this->assertArrayHasKey('lng', $location->viewport()['southwest']); |
|
80 | - $this->assertEquals(37.421017419708512, $location->viewport()['southwest']['lat']); |
|
77 | + $this->assertInternalType( 'array', $location->viewport()['southwest'] ); |
|
78 | + $this->assertArrayHasKey( 'lat', $location->viewport()['southwest'] ); |
|
79 | + $this->assertArrayHasKey( 'lng', $location->viewport()['southwest'] ); |
|
80 | + $this->assertEquals( 37.421017419708512, $location->viewport()['southwest']['lat'] ); |
|
81 | 81 | $this->assertEquals(-122.0857549802915, $location->viewport()['southwest']['lng']); |
82 | 82 | } |
83 | 83 | } |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | |
33 | 33 | |
34 | 34 | public function setUp() { |
35 | - $this->_location = new Location([ |
|
35 | + $this->_location = new Location( [ |
|
36 | 36 | 'address' => '123 Anywhere Street Anywhere NY', |
37 | 37 | 'formatted_address' => '123 Anywhere Street, Anywhere, NY 12345 USA', |
38 | 38 | 'latitude' => 100.12345, |
@@ -40,15 +40,15 @@ discard block |
||
40 | 40 | 'place_id' => 'foobar', |
41 | 41 | 'types' => ['foo', 'bar'], |
42 | 42 | 'viewport' => ['northeast' => ['lat' => 100.12346, 'lng' => -100.12344], 'southwest' => ['lat' => 100.12344, 'lng' => -100.12346]], |
43 | - ]); |
|
43 | + ] ); |
|
44 | 44 | |
45 | - $this->_geocoder = \Mockery::mock('\Clubdeuce\WPLib\Components\GoogleMaps\Geocoder'); |
|
46 | - $this->_geocoder->shouldReceive('geocode')->andReturn($this->_location); |
|
45 | + $this->_geocoder = \Mockery::mock( '\Clubdeuce\WPLib\Components\GoogleMaps\Geocoder' ); |
|
46 | + $this->_geocoder->shouldReceive( 'geocode' )->andReturn( $this->_location ); |
|
47 | 47 | |
48 | - $this->_model = new Marker_Model([ |
|
48 | + $this->_model = new Marker_Model( [ |
|
49 | 49 | 'address' => $this->_address, |
50 | 50 | 'geocoder' => $this->_geocoder, |
51 | - ]); |
|
51 | + ] ); |
|
52 | 52 | } |
53 | 53 | |
54 | 54 | |
@@ -56,14 +56,14 @@ discard block |
||
56 | 56 | * @covers ::latitude |
57 | 57 | */ |
58 | 58 | public function testLatitude() { |
59 | - $this->assertEquals(100.12345, $this->_model->latitude()); |
|
59 | + $this->assertEquals( 100.12345, $this->_model->latitude() ); |
|
60 | 60 | } |
61 | 61 | |
62 | 62 | /** |
63 | 63 | * @covers ::location |
64 | 64 | */ |
65 | 65 | public function testLocation() { |
66 | - $this->assertEquals($this->_location, $this->_model->location()); |
|
66 | + $this->assertEquals( $this->_location, $this->_model->location() ); |
|
67 | 67 | } |
68 | 68 | |
69 | 69 | /** |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | * @covers ::_geocoder |
78 | 78 | */ |
79 | 79 | public function testGeocoder() { |
80 | - $this->assertEquals($this->_geocoder, $this->reflectionMethodInvoke($this->_model, '_geocoder')); |
|
80 | + $this->assertEquals( $this->_geocoder, $this->reflectionMethodInvoke( $this->_model, '_geocoder' ) ); |
|
81 | 81 | } |
82 | 82 | |
83 | 83 | /** |
@@ -85,6 +85,6 @@ discard block |
||
85 | 85 | */ |
86 | 86 | public function testCreateGeocoder() { |
87 | 87 | $marker_model = new Marker_Model(); |
88 | - $this->assertInstanceOf('\Clubdeuce\WPLib\Components\GoogleMaps\Geocoder', $this->reflectionMethodInvoke($marker_model, '_geocoder')); |
|
88 | + $this->assertInstanceOf( '\Clubdeuce\WPLib\Components\GoogleMaps\Geocoder', $this->reflectionMethodInvoke( $marker_model, '_geocoder' ) ); |
|
89 | 89 | } |
90 | 90 | } |
91 | 91 | \ No newline at end of file |
@@ -23,7 +23,7 @@ |
||
23 | 23 | function make_args() { |
24 | 24 | return array( |
25 | 25 | 'center' => $this->center(), |
26 | - 'zoom' => (int)$this->zoom(), |
|
26 | + 'zoom' => ( int ) $this->zoom(), |
|
27 | 27 | ); |
28 | 28 | } |
29 | 29 | } |
30 | 30 | \ No newline at end of file |
@@ -12,10 +12,10 @@ |
||
12 | 12 | <script type="application/javascript"> |
13 | 13 | jQuery(document).ready(function() { |
14 | 14 | generate_map( |
15 | - "<?php echo esc_js($map_id); ?>", |
|
16 | - <?php echo json_encode($map_params); ?>, |
|
17 | - <?php echo json_encode($markers); ?>, |
|
18 | - <?php echo json_encode($info_windows); ?> |
|
15 | + "<?php echo esc_js( $map_id ); ?>", |
|
16 | + <?php echo json_encode( $map_params ); ?>, |
|
17 | + <?php echo json_encode( $markers ); ?>, |
|
18 | + <?php echo json_encode( $info_windows ); ?> |
|
19 | 19 | ); |
20 | 20 | }); |
21 | 21 | </script> |
@@ -2,7 +2,7 @@ discard block |
||
2 | 2 | |
3 | 3 | namespace Clubdeuce\WPLib\Components\GoogleMaps\Tests\UnitTests; |
4 | 4 | |
5 | -require_once dirname( dirname(__DIR__) ) . '/component-google-maps.php'; |
|
5 | +require_once dirname( dirname( __DIR__ ) ).'/component-google-maps.php'; |
|
6 | 6 | |
7 | 7 | use Clubdeuce\WPLib\Components\Google_Maps; |
8 | 8 | use Clubdeuce\WPLib\Components\GoogleMaps\Tests\TestCase; |
@@ -20,8 +20,8 @@ discard block |
||
20 | 20 | */ |
21 | 21 | public function testApiKeySetAndGet() { |
22 | 22 | |
23 | - Google_Maps::register_api_key('foo'); |
|
24 | - $this->assertEquals('foo', Google_Maps::api_key()); |
|
23 | + Google_Maps::register_api_key( 'foo' ); |
|
24 | + $this->assertEquals( 'foo', Google_Maps::api_key() ); |
|
25 | 25 | |
26 | 26 | } |
27 | 27 | |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | */ |
31 | 31 | public function testGeocoder() { |
32 | 32 | |
33 | - $this->assertInstanceOf('Clubdeuce\WPLib\Components\GoogleMaps\Geocoder', Google_Maps::geocoder()); |
|
33 | + $this->assertInstanceOf( 'Clubdeuce\WPLib\Components\GoogleMaps\Geocoder', Google_Maps::geocoder() ); |
|
34 | 34 | |
35 | 35 | } |
36 | 36 | |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | |
42 | 42 | $map = Google_Maps::make_new_map(); |
43 | 43 | |
44 | - $this->assertInstanceOf('Clubdeuce\WPLib\Components\GoogleMaps\Map', $map); |
|
44 | + $this->assertInstanceOf( 'Clubdeuce\WPLib\Components\GoogleMaps\Map', $map ); |
|
45 | 45 | |
46 | 46 | } |
47 | 47 |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | |
26 | 26 | public function setUp() { |
27 | 27 | |
28 | - $this->_model = new Map_Model(array('center' => $this->_center, 'markers' => array('foo', 'bar', 'baz'), 'zoom' => 12)); |
|
28 | + $this->_model = new Map_Model( array( 'center' => $this->_center, 'markers' => array( 'foo', 'bar', 'baz' ), 'zoom' => 12 ) ); |
|
29 | 29 | |
30 | 30 | } |
31 | 31 | |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | */ |
35 | 35 | public function testCenter() { |
36 | 36 | |
37 | - $this->assertEquals($this->_center, $this->_model->center()); |
|
37 | + $this->assertEquals( $this->_center, $this->_model->center() ); |
|
38 | 38 | |
39 | 39 | } |
40 | 40 | |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | */ |
44 | 44 | public function testMarkers() { |
45 | 45 | |
46 | - $this->assertEquals(array('foo','bar','baz'), $this->_model->markers()); |
|
46 | + $this->assertEquals( array( 'foo', 'bar', 'baz' ), $this->_model->markers() ); |
|
47 | 47 | |
48 | 48 | } |
49 | 49 | |
@@ -53,9 +53,9 @@ discard block |
||
53 | 53 | */ |
54 | 54 | function testAddMarker() { |
55 | 55 | |
56 | - $this->_model->add_marker('foobar'); |
|
56 | + $this->_model->add_marker( 'foobar' ); |
|
57 | 57 | |
58 | - $this->assertContains('foobar', $this->_model->markers()); |
|
58 | + $this->assertContains( 'foobar', $this->_model->markers() ); |
|
59 | 59 | |
60 | 60 | } |
61 | 61 | |
@@ -65,12 +65,12 @@ discard block |
||
65 | 65 | */ |
66 | 66 | function testAddMarkers() { |
67 | 67 | |
68 | - $this->_model->add_markers(array('foobar', 'barbaz')); |
|
68 | + $this->_model->add_markers( array( 'foobar', 'barbaz' ) ); |
|
69 | 69 | |
70 | 70 | $markers = $this->_model->markers(); |
71 | 71 | |
72 | - $this->assertContains('foobar', $markers); |
|
73 | - $this->assertContains('barbaz', $markers); |
|
72 | + $this->assertContains( 'foobar', $markers ); |
|
73 | + $this->assertContains( 'barbaz', $markers ); |
|
74 | 74 | |
75 | 75 | } |
76 | 76 | |
@@ -78,6 +78,6 @@ discard block |
||
78 | 78 | * @covers ::zoom |
79 | 79 | */ |
80 | 80 | public function testZoom() { |
81 | - $this->assertEquals(12, $this->_model->zoom()); |
|
81 | + $this->assertEquals( 12, $this->_model->zoom() ); |
|
82 | 82 | } |
83 | 83 | } |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | * |
28 | 28 | */ |
29 | 29 | public function setUp() { |
30 | - $this->_geocoder = new Geocoder(['api_key' => $this->_api_key]); |
|
30 | + $this->_geocoder = new Geocoder( ['api_key' => $this->_api_key] ); |
|
31 | 31 | } |
32 | 32 | |
33 | 33 | /** |
@@ -35,53 +35,53 @@ discard block |
||
35 | 35 | * @covers ::api_key |
36 | 36 | */ |
37 | 37 | public function testConstructorWithAPIKey() { |
38 | - $this->assertEquals($this->_api_key, $this->_geocoder->api_key()); |
|
38 | + $this->assertEquals( $this->_api_key, $this->_geocoder->api_key() ); |
|
39 | 39 | } |
40 | 40 | |
41 | 41 | /** |
42 | 42 | * @covers ::_make_url |
43 | 43 | */ |
44 | 44 | public function testMakeUrl() { |
45 | - $response = $this->reflectionMethodInvokeArgs($this->_geocoder, '_make_url', '123 Anywhere Street New York 10001'); |
|
45 | + $response = $this->reflectionMethodInvokeArgs( $this->_geocoder, '_make_url', '123 Anywhere Street New York 10001' ); |
|
46 | 46 | |
47 | - $this->assertInternalType('string', $response); |
|
48 | - $this->assertRegExp('/address\=123\+Anywhere\+Street\+New\+York\+10001/', $response); |
|
49 | - $this->assertRegExp("/key={$this->_api_key}/", $response); |
|
47 | + $this->assertInternalType( 'string', $response ); |
|
48 | + $this->assertRegExp( '/address\=123\+Anywhere\+Street\+New\+York\+10001/', $response ); |
|
49 | + $this->assertRegExp( "/key={$this->_api_key}/", $response ); |
|
50 | 50 | } |
51 | 51 | |
52 | 52 | /** |
53 | 53 | * @covers ::_get_data |
54 | 54 | */ |
55 | 55 | public function testGetDataCache() { |
56 | - wp_cache_add( md5(serialize('foo.bar')), 'foobar'); |
|
56 | + wp_cache_add( md5( serialize( 'foo.bar' ) ), 'foobar' ); |
|
57 | 57 | |
58 | - $this->assertEquals('foobar', $this->reflectionMethodInvokeArgs($this->_geocoder, '_get_data', 'foo.bar')); |
|
58 | + $this->assertEquals( 'foobar', $this->reflectionMethodInvokeArgs( $this->_geocoder, '_get_data', 'foo.bar' ) ); |
|
59 | 59 | } |
60 | 60 | |
61 | 61 | /** |
62 | 62 | * @covers ::_make_location |
63 | 63 | */ |
64 | 64 | public function testMakeLocation() { |
65 | - $location = $this->reflectionMethodInvokeArgs($this->_geocoder, '_make_location', json_decode(file_get_contents(TEST_INCLUDES_DIR . '/geocoder-response.json'), true)); |
|
65 | + $location = $this->reflectionMethodInvokeArgs( $this->_geocoder, '_make_location', json_decode( file_get_contents( TEST_INCLUDES_DIR.'/geocoder-response.json' ), true ) ); |
|
66 | 66 | |
67 | - $this->assertInstanceOf('\Clubdeuce\WPLib\Components\GoogleMaps\Location', $location); |
|
68 | - $this->assertEquals('1600 Amphitheatre Parkway, Mountain View, CA 94043, USA', $location->address()); |
|
69 | - $this->assertEquals('1600 Amphitheatre Parkway, Mountain View, CA 94043, USA', $location->formatted_address()); |
|
70 | - $this->assertEquals(37.4224764, $location->latitude()); |
|
67 | + $this->assertInstanceOf( '\Clubdeuce\WPLib\Components\GoogleMaps\Location', $location ); |
|
68 | + $this->assertEquals( '1600 Amphitheatre Parkway, Mountain View, CA 94043, USA', $location->address() ); |
|
69 | + $this->assertEquals( '1600 Amphitheatre Parkway, Mountain View, CA 94043, USA', $location->formatted_address() ); |
|
70 | + $this->assertEquals( 37.4224764, $location->latitude() ); |
|
71 | 71 | $this->assertEquals(-122.0842499, $location->longitude()); |
72 | - $this->assertEquals('ChIJ2eUgeAK6j4ARbn5u_wAGqWA', $location->place_id()); |
|
73 | - $this->assertInternalType('array', $location->viewport()); |
|
74 | - $this->assertArrayHasKey('northeast', $location->viewport()); |
|
75 | - $this->assertArrayHasKey('southwest', $location->viewport()); |
|
76 | - $this->assertInternalType('array', $location->viewport()['northeast']); |
|
77 | - $this->assertArrayHasKey('lat', $location->viewport()['northeast']); |
|
78 | - $this->assertArrayHasKey('lng', $location->viewport()['northeast']); |
|
79 | - $this->assertEquals(37.4238253802915, $location->viewport()['northeast']['lat']); |
|
72 | + $this->assertEquals( 'ChIJ2eUgeAK6j4ARbn5u_wAGqWA', $location->place_id() ); |
|
73 | + $this->assertInternalType( 'array', $location->viewport() ); |
|
74 | + $this->assertArrayHasKey( 'northeast', $location->viewport() ); |
|
75 | + $this->assertArrayHasKey( 'southwest', $location->viewport() ); |
|
76 | + $this->assertInternalType( 'array', $location->viewport()['northeast'] ); |
|
77 | + $this->assertArrayHasKey( 'lat', $location->viewport()['northeast'] ); |
|
78 | + $this->assertArrayHasKey( 'lng', $location->viewport()['northeast'] ); |
|
79 | + $this->assertEquals( 37.4238253802915, $location->viewport()['northeast']['lat'] ); |
|
80 | 80 | $this->assertEquals(-122.0829009197085, $location->viewport()['northeast']['lng']); |
81 | - $this->assertInternalType('array', $location->viewport()['southwest']); |
|
82 | - $this->assertArrayHasKey('lat', $location->viewport()['southwest']); |
|
83 | - $this->assertArrayHasKey('lng', $location->viewport()['southwest']); |
|
84 | - $this->assertEquals(37.4211274197085, $location->viewport()['southwest']['lat']); |
|
81 | + $this->assertInternalType( 'array', $location->viewport()['southwest'] ); |
|
82 | + $this->assertArrayHasKey( 'lat', $location->viewport()['southwest'] ); |
|
83 | + $this->assertArrayHasKey( 'lng', $location->viewport()['southwest'] ); |
|
84 | + $this->assertEquals( 37.4211274197085, $location->viewport()['southwest']['lat'] ); |
|
85 | 85 | $this->assertEquals(-122.0855988802915, $location->viewport()['southwest']['lng']); |
86 | 86 | } |
87 | 87 | |
@@ -89,8 +89,8 @@ discard block |
||
89 | 89 | * @covers ::_make_request |
90 | 90 | */ |
91 | 91 | public function testMakeRequestInvalidURL() { |
92 | - $response = $this->reflectionMethodInvokeArgs($this->_geocoder, '_make_request', 'foo.bar'); |
|
93 | - $this->assertInstanceOf('WP_Error', $response); |
|
92 | + $response = $this->reflectionMethodInvokeArgs( $this->_geocoder, '_make_request', 'foo.bar' ); |
|
93 | + $this->assertInstanceOf( 'WP_Error', $response ); |
|
94 | 94 | } |
95 | 95 | |
96 | 96 | } |
97 | 97 | \ No newline at end of file |
@@ -83,7 +83,7 @@ |
||
83 | 83 | */ |
84 | 84 | function html_id() { |
85 | 85 | |
86 | - if ( ! isset( $this->_html_id ) ) { |
|
86 | + if ( !isset($this->_html_id) ) { |
|
87 | 87 | $this->_html_id = sprintf( 'map-%1$s', md5( serialize( array( $this->center(), $this->markers() ) ) ) ); |
88 | 88 | } |
89 | 89 |