diff options
author | Remi Collet <remi@remirepo.net> | 2019-03-13 08:40:05 +0100 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2019-03-13 08:40:05 +0100 |
commit | e9445cc305a148fa92cca9c4b46ea52876e1d9f1 (patch) | |
tree | 769ab7d6513ead3de879dd494c4ab0ff7ce90f62 /REFLECTION | |
parent | 8e4555ad0a95f269a6c19355cc9b19f0e585cae6 (diff) |
v4.3.1
Diffstat (limited to 'REFLECTION')
-rw-r--r-- | REFLECTION | 72 |
1 files changed, 65 insertions, 7 deletions
@@ -1,4 +1,4 @@ -Extension [ <persistent> extension #153 swoole version 4.3.0 ] { +Extension [ <persistent> extension #153 swoole version 4.3.1 ] { - INI { Entry [ swoole.enable_coroutine <ALL> ] @@ -16,11 +16,11 @@ Extension [ <persistent> extension #153 swoole version 4.3.0 ] { } - Constants [256] { - Constant [ string SWOOLE_VERSION ] { 4.3.0 } - Constant [ integer SWOOLE_VERSION_ID ] { 40300 } + Constant [ string SWOOLE_VERSION ] { 4.3.1 } + Constant [ integer SWOOLE_VERSION_ID ] { 40301 } Constant [ integer SWOOLE_MAJOR_VERSION ] { 4 } Constant [ integer SWOOLE_MINOR_VERSION ] { 3 } - Constant [ integer SWOOLE_RELEASE_VERSION ] { 0 } + Constant [ integer SWOOLE_RELEASE_VERSION ] { 1 } Constant [ string SWOOLE_EXTRA_VERSION ] { } Constant [ boolean SWOOLE_DEBUG ] { } Constant [ integer SWOOLE_BASE ] { 1 } @@ -198,7 +198,7 @@ Extension [ <persistent> extension #153 swoole version 4.3.0 ] { Constant [ integer SWOOLE_HTTP_CLIENT_ESTATUS_REQUEST_TIMEOUT ] { -2 } Constant [ integer SWOOLE_HTTP_CLIENT_ESTATUS_SERVER_RESET ] { -3 } Constant [ integer SWOOLE_DEFAULT_MAX_CORO_NUM ] { 3000 } - Constant [ integer SWOOLE_MAX_CORO_NUM_LIMIT ] { 9223372036854775807 } + Constant [ integer SWOOLE_CORO_MAX_NUM_LIMIT ] { 9223372036854775807 } Constant [ integer SWOOLE_CORO_INIT ] { 0 } Constant [ integer SWOOLE_CORO_WAITING ] { 1 } Constant [ integer SWOOLE_CORO_RUNNING ] { 2 } @@ -500,7 +500,7 @@ Extension [ <persistent> extension #153 swoole version 4.3.0 ] { } } - - Classes [42] { + - Classes [43] { Class [ <internal:swoole> class Swoole\Timer ] { - Constants [0] { @@ -1440,9 +1440,10 @@ Extension [ <persistent> extension #153 swoole version 4.3.0 ] { - Static methods [0] { } - - Properties [2] { + - Properties [3] { Property [ <default> public $fd ] Property [ <default> public $errCode ] + Property [ <default> public $errMsg ] } - Methods [16] { @@ -3610,6 +3611,63 @@ Extension [ <persistent> extension #153 swoole version 4.3.0 ] { } } + Class [ <internal:swoole> class Swoole\Coroutine\Http\Client\Exception extends Swoole\Exception implements Throwable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [10] { + Method [ <internal:Core, inherits Exception, ctor> public method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> public method __wakeup ] { + } + + Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception, prototype Throwable> public method __toString ] { + } + } + } + Class [ <internal:swoole> class Swoole\Coroutine ] { - Constants [0] { |