From 98022b145ff44c62cd93d8995fbd6ddcaff49fae Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sat, 17 May 2014 17:19:42 +0200 Subject: php-pecl-*: add Reflection file --- REFLECTION | 393 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 393 insertions(+) create mode 100644 REFLECTION diff --git a/REFLECTION b/REFLECTION new file mode 100644 index 0000000..d357b5f --- /dev/null +++ b/REFLECTION @@ -0,0 +1,393 @@ +Extension [ extension #121 rar version 3.0.2 ] { + + - Constants [6] { + Constant [ integer RAR_HOST_MSDOS ] { 0 } + Constant [ integer RAR_HOST_OS2 ] { 1 } + Constant [ integer RAR_HOST_WIN32 ] { 2 } + Constant [ integer RAR_HOST_UNIX ] { 3 } + Constant [ integer RAR_HOST_MACOS ] { 4 } + Constant [ integer RAR_HOST_BEOS ] { 5 } + } + + - Functions { + Function [ function rar_open ] { + + - Parameters [3] { + Parameter #0 [ $filename ] + Parameter #1 [ $password ] + Parameter #2 [ $volume_callback ] + } + } + Function [ function rar_list ] { + + - Parameters [1] { + Parameter #0 [ $rarfile ] + } + } + Function [ function rar_entry_get ] { + + - Parameters [2] { + Parameter #0 [ $rarfile ] + Parameter #1 [ $filename ] + } + } + Function [ function rar_solid_is ] { + + - Parameters [1] { + Parameter #0 [ $rarfile ] + } + } + Function [ function rar_comment_get ] { + + - Parameters [1] { + Parameter #0 [ $rarfile ] + } + } + Function [ function rar_broken_is ] { + + - Parameters [1] { + Parameter #0 [ $rarfile ] + } + } + Function [ function rar_allow_broken_set ] { + + - Parameters [2] { + Parameter #0 [ $rarfile ] + Parameter #1 [ $allow_broken ] + } + } + Function [ function rar_close ] { + + - Parameters [1] { + Parameter #0 [ $rarfile ] + } + } + Function [ function rar_wrapper_cache_stats ] { + + - Parameters [0] { + } + } + } + + - Classes [3] { + Class [ final class RarArchive implements Traversable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ static public method open ] { + + - Parameters [3] { + Parameter #0 [ $filename ] + Parameter #1 [ $password ] + Parameter #2 [ $volume_callback ] + } + } + } + + - Properties [0] { + } + + - Methods [9] { + Method [ public method getEntries ] { + + - Parameters [0] { + } + } + + Method [ public method getEntry ] { + + - Parameters [1] { + Parameter #0 [ $filename ] + } + } + + Method [ public method isSolid ] { + + - Parameters [0] { + } + } + + Method [ public method getComment ] { + + - Parameters [0] { + } + } + + Method [ public method isBroken ] { + + - Parameters [0] { + } + } + + Method [ public method setAllowBroken ] { + + - Parameters [1] { + Parameter #0 [ $allow_broken ] + } + } + + Method [ public method close ] { + + - Parameters [0] { + } + } + + Method [ public method __toString ] { + + - Parameters [0] { + } + } + + Method [ private method __construct ] { + + - Parameters [0] { + } + } + } + } + + Class [ final class RarEntry ] { + + - Constants [41] { + Constant [ integer HOST_MSDOS ] { 0 } + Constant [ integer HOST_OS2 ] { 1 } + Constant [ integer HOST_WIN32 ] { 2 } + Constant [ integer HOST_UNIX ] { 3 } + Constant [ integer HOST_MACOS ] { 4 } + Constant [ integer HOST_BEOS ] { 5 } + Constant [ integer ATTRIBUTE_WIN_READONLY ] { 1 } + Constant [ integer ATTRIBUTE_WIN_HIDDEN ] { 2 } + Constant [ integer ATTRIBUTE_WIN_SYSTEM ] { 4 } + Constant [ integer ATTRIBUTE_WIN_DIRECTORY ] { 16 } + Constant [ integer ATTRIBUTE_WIN_ARCHIVE ] { 32 } + Constant [ integer ATTRIBUTE_WIN_DEVICE ] { 64 } + Constant [ integer ATTRIBUTE_WIN_NORMAL ] { 128 } + Constant [ integer ATTRIBUTE_WIN_TEMPORARY ] { 256 } + Constant [ integer ATTRIBUTE_WIN_SPARSE_FILE ] { 512 } + Constant [ integer ATTRIBUTE_WIN_REPARSE_POINT ] { 1024 } + Constant [ integer ATTRIBUTE_WIN_COMPRESSED ] { 2048 } + Constant [ integer ATTRIBUTE_WIN_OFFLINE ] { 4096 } + Constant [ integer ATTRIBUTE_WIN_NOT_CONTENT_INDEXED ] { 8192 } + Constant [ integer ATTRIBUTE_WIN_ENCRYPTED ] { 16384 } + Constant [ integer ATTRIBUTE_WIN_VIRTUAL ] { 65536 } + Constant [ integer ATTRIBUTE_UNIX_WORLD_EXECUTE ] { 1 } + Constant [ integer ATTRIBUTE_UNIX_WORLD_WRITE ] { 2 } + Constant [ integer ATTRIBUTE_UNIX_WORLD_READ ] { 4 } + Constant [ integer ATTRIBUTE_UNIX_GROUP_EXECUTE ] { 8 } + Constant [ integer ATTRIBUTE_UNIX_GROUP_WRITE ] { 16 } + Constant [ integer ATTRIBUTE_UNIX_GROUP_READ ] { 32 } + Constant [ integer ATTRIBUTE_UNIX_OWNER_EXECUTE ] { 64 } + Constant [ integer ATTRIBUTE_UNIX_OWNER_WRITE ] { 128 } + Constant [ integer ATTRIBUTE_UNIX_OWNER_READ ] { 256 } + Constant [ integer ATTRIBUTE_UNIX_STICKY ] { 512 } + Constant [ integer ATTRIBUTE_UNIX_SETGID ] { 1024 } + Constant [ integer ATTRIBUTE_UNIX_SETUID ] { 2048 } + Constant [ integer ATTRIBUTE_UNIX_FINAL_QUARTET ] { 61440 } + Constant [ integer ATTRIBUTE_UNIX_FIFO ] { 4096 } + Constant [ integer ATTRIBUTE_UNIX_CHAR_DEV ] { 8192 } + Constant [ integer ATTRIBUTE_UNIX_DIRECTORY ] { 16384 } + Constant [ integer ATTRIBUTE_UNIX_BLOCK_DEV ] { 24576 } + Constant [ integer ATTRIBUTE_UNIX_REGULAR_FILE ] { 32768 } + Constant [ integer ATTRIBUTE_UNIX_SYM_LINK ] { 40960 } + Constant [ integer ATTRIBUTE_UNIX_SOCKET ] { 49152 } + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [12] { + Property [ private $rarfile ] + Property [ private $position ] + Property [ private $name ] + Property [ private $unpacked_size ] + Property [ private $packed_size ] + Property [ private $host_os ] + Property [ private $file_time ] + Property [ private $crc ] + Property [ private $attr ] + Property [ private $version ] + Property [ private $method ] + Property [ private $flags ] + } + + - Methods [16] { + Method [ public method extract ] { + + - Parameters [4] { + Parameter #0 [ $path ] + Parameter #1 [ $filename ] + Parameter #2 [ $password ] + Parameter #3 [ $extended_data ] + } + } + + Method [ public method getPosition ] { + + - Parameters [0] { + } + } + + Method [ public method getName ] { + + - Parameters [0] { + } + } + + Method [ public method getUnpackedSize ] { + + - Parameters [0] { + } + } + + Method [ public method getPackedSize ] { + + - Parameters [0] { + } + } + + Method [ public method getHostOs ] { + + - Parameters [0] { + } + } + + Method [ public method getFileTime ] { + + - Parameters [0] { + } + } + + Method [ public method getCrc ] { + + - Parameters [0] { + } + } + + Method [ public method getAttr ] { + + - Parameters [0] { + } + } + + Method [ public method getVersion ] { + + - Parameters [0] { + } + } + + Method [ public method getMethod ] { + + - Parameters [0] { + } + } + + Method [ public method getStream ] { + + - Parameters [1] { + Parameter #0 [ $password ] + } + } + + Method [ public method isDirectory ] { + + - Parameters [0] { + } + } + + Method [ public method isEncrypted ] { + + - Parameters [0] { + } + } + + Method [ public method __toString ] { + + - Parameters [0] { + } + } + + Method [ private method __construct ] { + + - Parameters [0] { + } + } + } + } + + Class [ class RarException extends Exception ] { + + - Constants [0] { + } + + - Static properties [1] { + Property [ private static $usingExceptions ] + } + + - Static methods [2] { + Method [ static public method setUsingExceptions ] { + + - Parameters [1] { + Parameter #0 [ $using_exceptions ] + } + } + + Method [ static public method isUsingExceptions ] { + + - Parameters [0] { + } + } + } + + - Properties [4] { + Property [ protected $message ] + Property [ protected $code ] + Property [ protected $file ] + Property [ protected $line ] + } + + - Methods [9] { + Method [ method __construct ] { + + - Parameters [3] { + Parameter #0 [ $message ] + Parameter #1 [ $code ] + Parameter #2 [ $previous ] + } + } + + Method [ final public method getMessage ] { + } + + Method [ final public method getCode ] { + } + + Method [ final public method getFile ] { + } + + Method [ final public method getLine ] { + } + + Method [ final public method getTrace ] { + } + + Method [ final public method getPrevious ] { + } + + Method [ final public method getTraceAsString ] { + } + + Method [ public method __toString ] { + } + } + } + } +} + -- cgit