Skip to content
This repository was archived by the owner on Oct 1, 2024. It is now read-only.

Commit 5d80666

Browse files
authored
Merge pull request #91 from njbarrett/revert-90-patch-1
Revert "Handle locales where <? (string) 1.32 // 1,32 ?>"
2 parents defae81 + 8f68321 commit 5d80666

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Geometries/Point.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public static function fromString($wktArgument)
5858

5959
public function __toString()
6060
{
61-
return sprintf('%F %F', $this->getLng(), $this->getLat());
61+
return $this->getLng() . ' ' . $this->getLat();
6262
}
6363

6464
/**

0 commit comments

Comments
 (0)