@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | |
60 | 60 | public function testSetSize() { |
61 | 61 | $map = $this->getMap(); |
62 | - $map->setSize('432px','1234px'); |
|
62 | + $map->setSize('432px', '1234px'); |
|
63 | 63 | $html = $map->forTemplate(); |
64 | 64 | $this->assertContains('style="width:432px; height: 1234px;"', $html); |
65 | 65 | } |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | public function testSetCenter() { |
111 | 111 | $map = $this->getMap(); |
112 | 112 | $map->setIncludeDownloadJavascript(true); |
113 | - $map->setCenter(-23.714,47.149); |
|
113 | + $map->setCenter(-23.714, 47.149); |
|
114 | 114 | $html = $map->forTemplate(); |
115 | 115 | echo $html; |
116 | 116 | $expected = "data-centre='{\"lat\":023.714,\"lng\":47.149}'"; |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | public function testSetLatLongCenter() { |
122 | 122 | $map = $this->getMap(); |
123 | 123 | $map->setIncludeDownloadJavascript(true); |
124 | - $map->setLatLongCenter(-23.714,47.149); |
|
124 | + $map->setLatLongCenter(-23.714, 47.149); |
|
125 | 125 | $html = $map->forTemplate(); |
126 | 126 | echo $html; |
127 | 127 | $expected = "data-centre='{\"lat\":023.714,\"lng\":47.149}'"; |