diff options
author | Remi Collet <remi@remirepo.net> | 2023-09-07 13:48:44 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2023-09-07 13:48:44 +0200 |
commit | 0972f1442e3e75e8ecdb33b9b9cb76c81b50cd4c (patch) | |
tree | c7410e30627a7988750bf9e00f6cd5db02a12ddc /REFLECTION | |
parent | 862e2d9a30a09214733e117245defc5d02f3d098 (diff) |
update to 2.1.0
enable test suite
add option --with server to run full test suite
Diffstat (limited to 'REFLECTION')
-rw-r--r-- | REFLECTION | 63 |
1 files changed, 53 insertions, 10 deletions
@@ -1,4 +1,4 @@ -Extension [ <persistent> extension #125 amqp version 2.0.0 ] { +Extension [ <persistent> extension #125 amqp version 2.1.0 ] { - INI { Entry [ amqp.host <ALL> ] @@ -79,12 +79,12 @@ Extension [ <persistent> extension #125 amqp version 2.0.0 ] { } - Constants [32] { - Constant [ string AMQP_EXTENSION_VERSION ] { 2.0.0 } + Constant [ string AMQP_EXTENSION_VERSION ] { 2.1.0 } Constant [ int AMQP_EXTENSION_VERSION_MAJOR ] { 2 } - Constant [ int AMQP_EXTENSION_VERSION_MINOR ] { 0 } + Constant [ int AMQP_EXTENSION_VERSION_MINOR ] { 1 } Constant [ int AMQP_EXTENSION_VERSION_PATCH ] { 0 } Constant [ string AMQP_EXTENSION_VERSION_EXTRA ] { } - Constant [ int AMQP_EXTENSION_VERSION_ID ] { 20000 } + Constant [ int AMQP_EXTENSION_VERSION_ID ] { 20100 } Constant [ int AMQP_NOPARAM ] { 0 } Constant [ int AMQP_JUST_CONSUME ] { 1 } Constant [ int AMQP_DURABLE ] { 2 } @@ -113,7 +113,7 @@ Extension [ <persistent> extension #125 amqp version 2.0.0 ] { Constant [ int AMQP_DELIVERY_MODE_PERSISTENT ] { 2 } } - - Classes [15] { + - Classes [16] { Class [ <internal:amqp> class AMQPException extends Exception implements Throwable, Stringable ] { - Constants [0] { @@ -1251,7 +1251,7 @@ Extension [ <persistent> extension #125 amqp version 2.0.0 ] { Property [ private array $arguments = [] ] } - - Methods [26] { + - Methods [27] { Method [ <internal:amqp, ctor> public method __construct ] { - Parameters [1] { @@ -1405,6 +1405,14 @@ Extension [ <persistent> extension #125 amqp version 2.0.0 ] { - Return [ void ] } + Method [ <internal:amqp> public method recover ] { + + - Parameters [1] { + Parameter #0 [ <optional> bool $requeue = true ] + } + - Return [ void ] + } + Method [ <internal:amqp> public method purge ] { - Parameters [0] { @@ -2088,7 +2096,30 @@ Extension [ <persistent> extension #125 amqp version 2.0.0 ] { } } - Class [ <internal:amqp> final class AMQPTimestamp implements Stringable ] { + Interface [ <internal:amqp> interface AMQPValue ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [1] { + Method [ <internal:amqp> abstract public method toAmqpValue ] { + + - Parameters [0] { + } + } + } + } + + Class [ <internal:amqp> final class AMQPTimestamp implements Stringable, AMQPValue ] { - Constants [2] { Constant [ public float MAX ] { 1.844674407371E+19 } @@ -2105,7 +2136,7 @@ Extension [ <persistent> extension #125 amqp version 2.0.0 ] { Property [ private float $timestamp ] } - - Methods [3] { + - Methods [4] { Method [ <internal:amqp, ctor> public method __construct ] { - Parameters [1] { @@ -2126,10 +2157,16 @@ Extension [ <persistent> extension #125 amqp version 2.0.0 ] { } - Return [ string ] } + + Method [ <internal:amqp, prototype AMQPValue> public method toAmqpValue ] { + + - Parameters [0] { + } + } } } - Class [ <internal:amqp> final class AMQPDecimal ] { + Class [ <internal:amqp> final class AMQPDecimal implements AMQPValue ] { - Constants [4] { Constant [ public int EXPONENT_MIN ] { 0 } @@ -2149,7 +2186,7 @@ Extension [ <persistent> extension #125 amqp version 2.0.0 ] { Property [ private int $significand ] } - - Methods [3] { + - Methods [4] { Method [ <internal:amqp, ctor> public method __construct ] { - Parameters [2] { @@ -2171,6 +2208,12 @@ Extension [ <persistent> extension #125 amqp version 2.0.0 ] { } - Return [ int ] } + + Method [ <internal:amqp, prototype AMQPValue> public method toAmqpValue ] { + + - Parameters [0] { + } + } } } } |