From: Steph Fox Date: Mon, 25 Feb 2008 12:21:19 +0000 (+0000) Subject: Update reflection info X-Git-Tag: RELEASE_2_0_0a1~332 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f5ab70a3b9fd687044c0e11ba0a279c9f4a090c6;p=php Update reflection info --- diff --git a/ext/phar/phar_object.c b/ext/phar/phar_object.c index 836e85b189..aee750e83e 100755 --- a/ext/phar/phar_object.c +++ b/ext/phar/phar_object.c @@ -3437,6 +3437,12 @@ ZEND_END_ARG_INFO(); static ZEND_BEGIN_ARG_INFO_EX(arginfo_phar_conv, 0, 0, 0) ZEND_ARG_INFO(0, compression_type) + ZEND_ARG_INFO(0, file_ext) +ZEND_END_ARG_INFO(); + +static +ZEND_BEGIN_ARG_INFO_EX(arginfo_phar_convz, 0, 0, 0) + ZEND_ARG_INFO(0, file_ext) ZEND_END_ARG_INFO(); static @@ -3494,7 +3500,7 @@ zend_function_entry php_archive_methods[] = { PHP_ME(Phar, compressAllFilesGZ, NULL, ZEND_ACC_PUBLIC) PHP_ME(Phar, convertToPhar, arginfo_phar_conv, ZEND_ACC_PUBLIC) PHP_ME(Phar, convertToTar, arginfo_phar_conv, ZEND_ACC_PUBLIC) - PHP_ME(Phar, convertToZip, NULL, ZEND_ACC_PUBLIC) + PHP_ME(Phar, convertToZip, arginfo_phar_convz, ZEND_ACC_PUBLIC) PHP_ME(Phar, copy, arginfo_phar_copy, ZEND_ACC_PUBLIC) PHP_ME(Phar, count, NULL, ZEND_ACC_PUBLIC) PHP_ME(Phar, delete, arginfo_phar_delete, ZEND_ACC_PUBLIC)