Skip to content

Commit ae425ed

Browse files
PratikshaPratiksha
authored andcommitted
updated tests
1 parent f093b16 commit ae425ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/OGM.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ private function parsePoint(string $value): Point
4343
$srid = (int) $matches[1];
4444
$x = (float) $matches[2];
4545
$y = (float) $matches[3];
46-
$z = isset($matches[4]) ? (float) $matches[4] : null; // Handle optional Z coordinate
46+
$z = isset($matches[4]) ? (float) $matches[4] : null;
4747

4848
return new Point($x, $y, $z, $srid);
4949
}

0 commit comments

Comments
 (0)