Skip to content

Commit 1a04a01

Browse files
committed
Fix arginfo
1 parent c6db5d5 commit 1a04a01

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

geospatial.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/*
22
+----------------------------------------------------------------------+
3-
| PHP Version 5/7 |
3+
| PHP |
44
+----------------------------------------------------------------------+
5-
| Copyright (c) 1997-2016 The PHP Group |
5+
| Copyright (c) 1997-2022 The PHP Group |
66
+----------------------------------------------------------------------+
77
| This source file is subject to version 3.01 of the PHP license, |
88
| that is bundled with this package in the file LICENSE, and is |
@@ -109,13 +109,13 @@ ZEND_BEGIN_ARG_INFO_EX(helmert_args, 0, 0, 3)
109109
ZEND_ARG_INFO(0, to_reference_ellipsoid)
110110
ZEND_END_ARG_INFO()
111111

112-
ZEND_BEGIN_ARG_INFO_EX(polar_to_cartesian_args, 0, 0, 3)
112+
ZEND_BEGIN_ARG_INFO_EX(polar_to_cartesian_args, 0, 0, 2)
113113
ZEND_ARG_INFO(0, latitude)
114114
ZEND_ARG_INFO(0, longitude)
115115
ZEND_ARG_INFO(0, reference_ellipsoid)
116116
ZEND_END_ARG_INFO()
117117

118-
ZEND_BEGIN_ARG_INFO_EX(cartesian_to_polar_args, 0, 0, 4)
118+
ZEND_BEGIN_ARG_INFO_EX(cartesian_to_polar_args, 0, 0, 3)
119119
ZEND_ARG_INFO(0, x)
120120
ZEND_ARG_INFO(0, y)
121121
ZEND_ARG_INFO(0, z)

php_geospatial.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/*
22
+----------------------------------------------------------------------+
3-
| PHP Version 5/7 |
3+
| PHP |
44
+----------------------------------------------------------------------+
5-
| Copyright (c) 1997-2016 The PHP Group |
5+
| Copyright (c) 1997-2022 The PHP Group |
66
+----------------------------------------------------------------------+
77
| This source file is subject to version 3.01 of the PHP license, |
88
| that is bundled with this package in the file LICENSE, and is |

0 commit comments

Comments
 (0)