Skip to content

Commit 6980d9b

Browse files
committed
Fixed argument hints, as per #11
1 parent 7928077 commit 6980d9b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

geospatial.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@ ZEND_BEGIN_ARG_INFO_EX(helmert_args, 0, 0, 3)
5858
ZEND_ARG_INFO(0, x)
5959
ZEND_ARG_INFO(0, y)
6060
ZEND_ARG_INFO(0, z)
61+
ZEND_ARG_INFO(0, from_reference_ellipsoid)
62+
ZEND_ARG_INFO(0, to_reference_ellipsoid)
6163
ZEND_END_ARG_INFO()
6264

6365
ZEND_BEGIN_ARG_INFO_EX(polar_to_cartesian_args, 0, 0, 3)
@@ -80,7 +82,7 @@ ZEND_BEGIN_ARG_INFO_EX(transform_datum_args, 0, 0, 4)
8082
ZEND_ARG_INFO(0, to_reference_ellipsoid)
8183
ZEND_END_ARG_INFO()
8284

83-
ZEND_BEGIN_ARG_INFO_EX(dms_to_decimal_args, 0, 0, 4)
85+
ZEND_BEGIN_ARG_INFO_EX(dms_to_decimal_args, 0, 0, 3)
8486
ZEND_ARG_INFO(0, degrees)
8587
ZEND_ARG_INFO(0, minutes)
8688
ZEND_ARG_INFO(0, seconds)

0 commit comments

Comments
 (0)