From 4163c374911eb32ad390a1303d5dc625946959fa 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 | 703 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 703 insertions(+) create mode 100644 REFLECTION diff --git a/REFLECTION b/REFLECTION new file mode 100644 index 0000000..2bef530 --- /dev/null +++ b/REFLECTION @@ -0,0 +1,703 @@ +Extension [ extension #162 yar version 1.2.3 ] { + + - Dependencies { + Dependency [ json (Required) ] + Dependency [ msgpack (Required) ] + } + + - INI { + Entry [ yar.packager ] + Current = 'msgpack' + } + Entry [ yar.transport ] + Current = 'curl' + } + Entry [ yar.debug ] + Current = 'Off' + } + Entry [ yar.expose_info ] + Current = 'On' + } + Entry [ yar.connect_timeout ] + Current = '1000' + } + Entry [ yar.timeout ] + Current = '5000' + } + Entry [ yar.content_type ] + Current = 'application/octet-stream' + } + Entry [ yar.allow_persistent ] + Current = '0' + } + } + + - Constants [18] { + Constant [ string PHP_YAR_VERSION ] { 1.2.3 } + Constant [ integer YAR_OPT_PACKAGER ] { 1 } + Constant [ integer YAR_OPT_PERSISTENT ] { 2 } + Constant [ integer YAR_OPT_TIMEOUT ] { 4 } + Constant [ integer YAR_OPT_CONNECT_TIMEOUT ] { 8 } + Constant [ integer YAR_CLIENT_PROTOCOL_HTTP ] { 1 } + Constant [ integer YAR_CLIENT_PROTOCOL_TCP ] { 2 } + Constant [ integer YAR_CLIENT_PROTOCOL_UNIX ] { 4 } + Constant [ string YAR_PACKAGER_PHP ] { PHP } + Constant [ string YAR_PACKAGER_JSON ] { JSON } + Constant [ string YAR_PACKAGER_MSGPACK ] { MSGPACK } + Constant [ integer YAR_ERR_OKEY ] { 0 } + Constant [ integer YAR_ERR_OUTPUT ] { 8 } + Constant [ integer YAR_ERR_TRANSPORT ] { 16 } + Constant [ integer YAR_ERR_REQUEST ] { 4 } + Constant [ integer YAR_ERR_PROTOCOL ] { 2 } + Constant [ integer YAR_ERR_PACKAGER ] { 64 } + Constant [ integer YAR_ERR_EXCEPTION ] { 64 } + } + + - Classes [12] { + Class [ class Yar_Server ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [1] { + Property [ protected $_executor ] + } + + - Methods [2] { + Method [ final public method __construct ] { + + - Parameters [2] { + Parameter #0 [ $obj ] + Parameter #1 [ $protocol ] + } + } + + Method [ public method handle ] { + + - Parameters [0] { + } + } + } + } + + Class [ class Yar_Client ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $_protocol ] + Property [ protected $_uri ] + Property [ protected $_options ] + Property [ protected $_running ] + } + + - Methods [5] { + Method [ final public method __construct ] { + + - Parameters [2] { + Parameter #0 [ $url ] + Parameter #1 [ $async ] + } + } + + Method [ public method call ] { + + - Parameters [2] { + Parameter #0 [ $method ] + Parameter #1 [ $parameters ] + } + } + + Method [ public method __call ] { + + - Parameters [2] { + Parameter #0 [ $method ] + Parameter #1 [ $parameters ] + } + } + + Method [ public method getOpt ] { + + - Parameters [1] { + Parameter #0 [ $type ] + } + } + + Method [ public method setOpt ] { + + - Parameters [2] { + Parameter #0 [ $type ] + Parameter #1 [ $value ] + } + } + } + } + + Class [ class Yar_Concurrent_Client ] { + + - Constants [0] { + } + + - Static properties [4] { + Property [ protected static $_callstack ] + Property [ protected static $_callback ] + Property [ protected static $_error_callback ] + Property [ protected static $_start ] + } + + - Static methods [2] { + Method [ static public method call ] { + + - Parameters [4] { + Parameter #0 [ $uri ] + Parameter #1 [ $method ] + Parameter #2 [ $parameters ] + Parameter #3 [ $callback ] + } + } + + Method [ static public method loop ] { + + - Parameters [2] { + Parameter #0 [ $callback ] + Parameter #1 [ $error_callback ] + } + } + } + + - Properties [0] { + } + + - Methods [0] { + } + } + + Class [ class Yar_Server_Exception extends Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [5] { + Property [ protected $message ] + Property [ protected $code ] + Property [ protected $file ] + Property [ protected $line ] + Property [ protected $_type ] + } + + - Methods [10] { + Method [ public method getType ] { + } + + 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 ] { + } + } + } + + Class [ class Yar_Server_Request_Exception extends Yar_Server_Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $message ] + Property [ protected $code ] + Property [ protected $file ] + Property [ protected $line ] + } + + - Methods [10] { + Method [ public method getType ] { + } + + 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 ] { + } + } + } + + Class [ class Yar_Server_Protocol_Exception extends Yar_Server_Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $message ] + Property [ protected $code ] + Property [ protected $file ] + Property [ protected $line ] + } + + - Methods [10] { + Method [ public method getType ] { + } + + 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 ] { + } + } + } + + Class [ class Yar_Server_Packager_Exception extends Yar_Server_Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $message ] + Property [ protected $code ] + Property [ protected $file ] + Property [ protected $line ] + } + + - Methods [10] { + Method [ public method getType ] { + } + + 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 ] { + } + } + } + + Class [ class Yar_Server_Output_Exception extends Yar_Server_Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $message ] + Property [ protected $code ] + Property [ protected $file ] + Property [ protected $line ] + } + + - Methods [10] { + Method [ public method getType ] { + } + + 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 ] { + } + } + } + + Class [ class Yar_Client_Exception extends Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $message ] + Property [ protected $code ] + Property [ protected $file ] + Property [ protected $line ] + } + + - Methods [10] { + Method [ public method getType ] { + } + + 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 ] { + } + } + } + + Class [ class Yar_Client_Transport_Exception extends Yar_Client_Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $message ] + Property [ protected $code ] + Property [ protected $file ] + Property [ protected $line ] + } + + - Methods [10] { + Method [ public method getType ] { + } + + 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 ] { + } + } + } + + Class [ class Yar_Client_Packager_Exception extends Yar_Client_Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $message ] + Property [ protected $code ] + Property [ protected $file ] + Property [ protected $line ] + } + + - Methods [10] { + Method [ public method getType ] { + } + + 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 ] { + } + } + } + + Class [ class Yar_Client_Protocol_Exception extends Yar_Client_Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $message ] + Property [ protected $code ] + Property [ protected $file ] + Property [ protected $line ] + } + + - Methods [10] { + Method [ public method getType ] { + } + + 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