@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | $this->assertContains('data-useclusterer=1', $html); |
34 | 34 | |
35 | 35 | $map = $this->getMap(); |
36 | - $map->setClusterer(true, 60,14); |
|
36 | + $map->setClusterer(true, 60, 14); |
|
37 | 37 | $html = $map->forTemplate(); |
38 | 38 | $this->assertContains('data-clusterergridsize=60', $html); |
39 | 39 | $this->assertContains('data-clusterermaxzoom=14', $html); |
@@ -404,14 +404,14 @@ discard block |
||
404 | 404 | public function testAddLine() { |
405 | 405 | $map = $this->getMap(); |
406 | 406 | $map->addLine( |
407 | - array(13,101), |
|
407 | + array(13, 101), |
|
408 | 408 | array(13.2, 101.4), |
409 | 409 | '#F32' |
410 | 410 | ); |
411 | 411 | |
412 | 412 | $map->addLine( |
413 | 413 | array(13.2, 101.4), |
414 | - array(14.2,99.8) |
|
414 | + array(14.2, 99.8) |
|
415 | 415 | ); |
416 | 416 | |
417 | 417 | $html = $map->forTemplate(); |