We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f093b16 commit ae425edCopy full SHA for ae425ed
src/OGM.php
@@ -43,7 +43,7 @@ private function parsePoint(string $value): Point
43
$srid = (int) $matches[1];
44
$x = (float) $matches[2];
45
$y = (float) $matches[3];
46
- $z = isset($matches[4]) ? (float) $matches[4] : null; // Handle optional Z coordinate
+ $z = isset($matches[4]) ? (float) $matches[4] : null;
47
48
return new Point($x, $y, $z, $srid);
49
}
0 commit comments