From d256a74edfec7568501fd18e0060f7545124441a Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 8 Oct 2024 10:43:15 +0200 Subject: update to 2.0.9 drop patches merged upstream --- REFLECTION | 103 +++++++++++++++++++++++++++++++++++++++++-------------------- 1 file changed, 70 insertions(+), 33 deletions(-) (limited to 'REFLECTION') diff --git a/REFLECTION b/REFLECTION index 751797f..466198f 100644 --- a/REFLECTION +++ b/REFLECTION @@ -1,4 +1,4 @@ -Extension [ extension #117 OAuth version 2.0.7 ] { +Extension [ extension #88 OAuth version 2.0.9 ] { - Constants [32] { Constant [ string OAUTH_SIG_METHOD_HMACSHA1 ] { HMAC-SHA1 } @@ -47,7 +47,7 @@ Extension [ extension #117 OAuth version 2.0.7 ] { - Parameters [3] { Parameter #0 [ $http_method ] Parameter #1 [ $uri ] - Parameter #2 [ $parameters ] + Parameter #2 [ $parameters = ] } } } @@ -65,9 +65,9 @@ Extension [ extension #117 OAuth version 2.0.7 ] { } - Properties [3] { - Property [ public $debug ] - Property [ public $sslChecks ] - Property [ public $debugInfo ] + Property [ public $debug = 0 ] + Property [ public $sslChecks = 1 ] + Property [ public $debugInfo = '' ] } - Methods [26] { @@ -76,8 +76,8 @@ Extension [ extension #117 OAuth version 2.0.7 ] { - Parameters [4] { Parameter #0 [ $consumer_key ] Parameter #1 [ $consumer_secret ] - Parameter #2 [ $signature_method ] - Parameter #3 [ $auth_type ] + Parameter #2 [ $signature_method = ] + Parameter #3 [ $auth_type = ] } } @@ -90,18 +90,20 @@ Extension [ extension #117 OAuth version 2.0.7 ] { Method [ public method getRequestToken ] { - - Parameters [2] { + - Parameters [3] { Parameter #0 [ $request_token_url ] - Parameter #1 [ $callback_url ] + Parameter #1 [ $callback_url = ] + Parameter #2 [ $http_method = ] } } Method [ public method getAccessToken ] { - - Parameters [3] { + - Parameters [4] { Parameter #0 [ $access_token_url ] - Parameter #1 [ $auth_session_handle ] - Parameter #2 [ $auth_verifier ] + Parameter #1 [ $auth_session_handle = ] + Parameter #2 [ $auth_verifier = ] + Parameter #3 [ $http_method = ] } } @@ -170,9 +172,9 @@ Extension [ extension #117 OAuth version 2.0.7 ] { - Parameters [4] { Parameter #0 [ $protected_resource_url ] - Parameter #1 [ $extra_parameters ] - Parameter #2 [ $http_method ] - Parameter #3 [ $request_headers ] + Parameter #1 [ $extra_parameters = ] + Parameter #2 [ $http_method = ] + Parameter #3 [ $request_headers = ] } } @@ -231,7 +233,7 @@ Extension [ extension #117 OAuth version 2.0.7 ] { - Parameters [3] { Parameter #0 [ $http_method ] Parameter #1 [ $url ] - Parameter #2 [ $extra_parameters ] + Parameter #2 [ $extra_parameters = ] } } @@ -254,13 +256,13 @@ Extension [ extension #117 OAuth version 2.0.7 ] { - Parameters [3] { Parameter #0 [ $http_method ] Parameter #1 [ $url ] - Parameter #2 [ $extra_parameters ] + Parameter #2 [ $extra_parameters = ] } } } } - Class [ class OAuthException extends Exception implements Throwable ] { + Class [ class OAuthException extends Exception implements Throwable, Stringable ] { - Constants [0] { } @@ -272,49 +274,84 @@ Extension [ extension #117 OAuth version 2.0.7 ] { } - Properties [6] { - Property [ protected $message ] - Property [ protected $code ] - Property [ protected $file ] - Property [ protected $line ] - Property [ public $lastResponse ] - Property [ public $debugInfo ] + Property [ protected $message = '' ] + Property [ protected $code = 0 ] + Property [ protected string $file = '' ] + Property [ protected int $line = 0 ] + Property [ public $lastResponse = NULL ] + Property [ public $debugInfo = NULL ] } - Methods [10] { Method [ public method __construct ] { - Parameters [3] { - Parameter #0 [ $message ] - Parameter #1 [ $code ] - Parameter #2 [ $previous ] + Parameter #0 [ string $message = "" ] + Parameter #1 [ int $code = 0 ] + Parameter #2 [ ?Throwable $previous = null ] } } Method [ public method __wakeup ] { + + - Parameters [0] { + } + - Tentative return [ void ] } Method [ final public method getMessage ] { + + - Parameters [0] { + } + - Return [ string ] } Method [ final public method getCode ] { + + - Parameters [0] { + } } Method [ final public method getFile ] { + + - Parameters [0] { + } + - Return [ string ] } Method [ final public method getLine ] { + + - Parameters [0] { + } + - Return [ int ] } Method [ final public method getTrace ] { + + - Parameters [0] { + } + - Return [ array ] } Method [ final public method getPrevious ] { + + - Parameters [0] { + } + - Return [ ?Throwable ] } Method [ final public method getTraceAsString ] { + + - Parameters [0] { + } + - Return [ string ] } - Method [ public method __toString ] { + Method [ public method __toString ] { + + - Parameters [0] { + } + - Return [ string ] } } } @@ -339,7 +376,7 @@ Extension [ extension #117 OAuth version 2.0.7 ] { - Parameters [2] { Parameter #0 [ $size ] - Parameter #1 [ $strong ] + Parameter #1 [ $strong = ] } } } @@ -351,7 +388,7 @@ Extension [ extension #117 OAuth version 2.0.7 ] { Method [ public method __construct ] { - Parameters [1] { - Parameter #0 [ $params_array ] + Parameter #0 [ $params_array = ] } } @@ -397,8 +434,8 @@ Extension [ extension #117 OAuth version 2.0.7 ] { Method [ public method checkOAuthRequest ] { - Parameters [2] { - Parameter #0 [ $uri ] - Parameter #1 [ $method ] + Parameter #0 [ $uri = ] + Parameter #1 [ $method = ] } } @@ -427,7 +464,7 @@ Extension [ extension #117 OAuth version 2.0.7 ] { - Parameters [2] { Parameter #0 [ $param_key ] - Parameter #1 [ $param_val ] + Parameter #1 [ $param_val = ] } } -- cgit