diff options
author | Remi Collet <remi@remirepo.net> | 2023-09-11 10:21:36 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2023-09-11 10:21:36 +0200 |
commit | 64504e8b8fb097d6e849953eb0e4721321c41a27 (patch) | |
tree | 6d993631f655de280efa8b6db1c664f0294ae39b /rpminfo_arginfo.h | |
parent | 1662502e7dc10dcd4f17eb304486e2058cbb1d5a (diff) |
add optional operator to rpmcmpver for consistency with version_compare
Diffstat (limited to 'rpminfo_arginfo.h')
-rw-r--r-- | rpminfo_arginfo.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/rpminfo_arginfo.h b/rpminfo_arginfo.h index 20c501f..03fa650 100644 --- a/rpminfo_arginfo.h +++ b/rpminfo_arginfo.h @@ -1,5 +1,5 @@ /* This is a generated file, edit the .stub.php file instead. - * Stub hash: 6b4dfeada2b5de5c5453d2b38c1a861e01bf958e */ + * Stub hash: 8636be19a4c17d1ed16247fb265a923ee7c89104 */ ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_rpmaddtag, 0, 1, _IS_BOOL, 0) ZEND_ARG_TYPE_INFO(0, rpmtag, IS_LONG, 0) @@ -23,9 +23,10 @@ ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_rpminfo, 0, 1, IS_ARRAY, 1) ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(1, error, IS_STRING, 1, "null") ZEND_END_ARG_INFO() -ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_rpmvercmp, 0, 2, IS_LONG, 0) +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_MASK_EX(arginfo_rpmvercmp, 0, 2, MAY_BE_LONG|MAY_BE_BOOL) ZEND_ARG_TYPE_INFO(0, evr1, IS_STRING, 0) ZEND_ARG_TYPE_INFO(0, evr2, IS_STRING, 0) + ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, operator, IS_STRING, 1, "null") ZEND_END_ARG_INFO() |