From 1f09ce9976e9bdf473049d098d7811234420a8fe Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sat, 18 Dec 2021 08:12:38 +0100 Subject: update to 4.8.4 --- REFLECTION | 64 +++++++++++++++++++++++++++++++++++++++++--------------------- 1 file changed, 42 insertions(+), 22 deletions(-) (limited to 'REFLECTION') diff --git a/REFLECTION b/REFLECTION index 1a39495..c090c66 100644 --- a/REFLECTION +++ b/REFLECTION @@ -1,4 +1,4 @@ -Extension [ extension #86 swoole version 4.8.3 ] { +Extension [ extension #86 swoole version 4.8.4 ] { - Dependencies { Dependency [ json (Required) ] @@ -29,11 +29,11 @@ Extension [ extension #86 swoole version 4.8.3 ] { } - Constants [390] { - Constant [ string SWOOLE_VERSION ] { 4.8.3 } - Constant [ int SWOOLE_VERSION_ID ] { 40803 } + Constant [ string SWOOLE_VERSION ] { 4.8.4 } + Constant [ int SWOOLE_VERSION_ID ] { 40804 } Constant [ int SWOOLE_MAJOR_VERSION ] { 4 } Constant [ int SWOOLE_MINOR_VERSION ] { 8 } - Constant [ int SWOOLE_RELEASE_VERSION ] { 3 } + Constant [ int SWOOLE_RELEASE_VERSION ] { 4 } Constant [ string SWOOLE_EXTRA_VERSION ] { } Constant [ bool SWOOLE_DEBUG ] { } Constant [ bool SWOOLE_HAVE_COMPRESSION ] { 1 } @@ -2004,146 +2004,166 @@ Extension [ extension #86 swoole version 4.8.3 ] { Method [ public method __construct ] { - Parameters [2] { - Parameter #0 [ $table_size ] - Parameter #1 [ $conflict_proportion = ] + Parameter #0 [ int $table_size ] + Parameter #1 [ float $conflict_proportion = 0.2 ] } } Method [ public method column ] { - Parameters [3] { - Parameter #0 [ $name ] - Parameter #1 [ $type ] - Parameter #2 [ $size = ] + Parameter #0 [ string $name ] + Parameter #1 [ int $type ] + Parameter #2 [ int $size = 0 ] } + - Return [ bool ] } Method [ public method create ] { - Parameters [0] { } + - Return [ bool ] } Method [ public method destroy ] { - Parameters [0] { } + - Return [ bool ] } Method [ public method set ] { - Parameters [2] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] Parameter #1 [ array $value ] } + - Return [ bool ] } Method [ public method get ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $field = ] + Parameter #0 [ string $key ] + Parameter #1 [ ?string $field = null ] } + - Return [ array|string|int|float|false ] } Method [ public method count ] { - Parameters [0] { } + - Return [ int ] } Method [ public method del ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ bool ] } Method [ public method delete ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ bool ] } Method [ public method exists ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ bool ] } Method [ public method exist ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ bool ] } Method [ public method incr ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $column ] - Parameter #2 [ $incrby = ] + Parameter #0 [ string $key ] + Parameter #1 [ string $column ] + Parameter #2 [ int|float $incrby = 1 ] } + - Return [ int|float ] } Method [ public method decr ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $column ] - Parameter #2 [ $decrby = ] + Parameter #0 [ string $key ] + Parameter #1 [ string $column ] + Parameter #2 [ int|float $incrby = 1 ] } + - Return [ int|float ] } Method [ public method getSize ] { - Parameters [0] { } + - Return [ int ] } Method [ public method getMemorySize ] { - Parameters [0] { } + - Return [ int ] } Method [ public method stats ] { - Parameters [0] { } + - Return [ array|false ] } Method [ public method rewind ] { - Parameters [0] { } + - Return [ void ] } Method [ public method valid ] { - Parameters [0] { } + - Return [ bool ] } Method [ public method next ] { - Parameters [0] { } + - Return [ void ] } Method [ public method current ] { - Parameters [0] { } + - Return [ ?array ] } Method [ public method key ] { - Parameters [0] { } + - Return [ ?string ] } } } -- cgit