From 0972f1442e3e75e8ecdb33b9b9cb76c81b50cd4c Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 7 Sep 2023 13:48:44 +0200 Subject: update to 2.1.0 enable test suite add option --with server to run full test suite --- REFLECTION | 63 ++++++++++++++++++++++++++++++++++++++++++++++++++++---------- 1 file changed, 53 insertions(+), 10 deletions(-) (limited to 'REFLECTION') diff --git a/REFLECTION b/REFLECTION index 5504ed9..58d5df0 100644 --- a/REFLECTION +++ b/REFLECTION @@ -1,4 +1,4 @@ -Extension [ extension #125 amqp version 2.0.0 ] { +Extension [ extension #125 amqp version 2.1.0 ] { - INI { Entry [ amqp.host ] @@ -79,12 +79,12 @@ Extension [ 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 [ extension #125 amqp version 2.0.0 ] { Constant [ int AMQP_DELIVERY_MODE_PERSISTENT ] { 2 } } - - Classes [15] { + - Classes [16] { Class [ class AMQPException extends Exception implements Throwable, Stringable ] { - Constants [0] { @@ -1251,7 +1251,7 @@ Extension [ extension #125 amqp version 2.0.0 ] { Property [ private array $arguments = [] ] } - - Methods [26] { + - Methods [27] { Method [ public method __construct ] { - Parameters [1] { @@ -1405,6 +1405,14 @@ Extension [ extension #125 amqp version 2.0.0 ] { - Return [ void ] } + Method [ public method recover ] { + + - Parameters [1] { + Parameter #0 [ bool $requeue = true ] + } + - Return [ void ] + } + Method [ public method purge ] { - Parameters [0] { @@ -2088,7 +2096,30 @@ Extension [ extension #125 amqp version 2.0.0 ] { } } - Class [ final class AMQPTimestamp implements Stringable ] { + Interface [ interface AMQPValue ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [1] { + Method [ abstract public method toAmqpValue ] { + + - Parameters [0] { + } + } + } + } + + Class [ final class AMQPTimestamp implements Stringable, AMQPValue ] { - Constants [2] { Constant [ public float MAX ] { 1.844674407371E+19 } @@ -2105,7 +2136,7 @@ Extension [ extension #125 amqp version 2.0.0 ] { Property [ private float $timestamp ] } - - Methods [3] { + - Methods [4] { Method [ public method __construct ] { - Parameters [1] { @@ -2126,10 +2157,16 @@ Extension [ extension #125 amqp version 2.0.0 ] { } - Return [ string ] } + + Method [ public method toAmqpValue ] { + + - Parameters [0] { + } + } } } - Class [ final class AMQPDecimal ] { + Class [ final class AMQPDecimal implements AMQPValue ] { - Constants [4] { Constant [ public int EXPONENT_MIN ] { 0 } @@ -2149,7 +2186,7 @@ Extension [ extension #125 amqp version 2.0.0 ] { Property [ private int $significand ] } - - Methods [3] { + - Methods [4] { Method [ public method __construct ] { - Parameters [2] { @@ -2171,6 +2208,12 @@ Extension [ extension #125 amqp version 2.0.0 ] { } - Return [ int ] } + + Method [ public method toAmqpValue ] { + + - Parameters [0] { + } + } } } } -- cgit