Home
last modified time | relevance | path

Searched refs:tokenCallback (Results 1 – 6 of 6) sorted by last modified time

/plugin/authgooglesheets/vendor/google/apiclient/src/
H A DClient.php766 * @param callable $tokenCallback - function ($cacheKey, $accessToken)
768 public function setTokenCallback(callable $tokenCallback) argument
770 $this->config['token_callback'] = $tokenCallback;
/plugin/authgooglesheets/vendor/google/apiclient/
H A DREADME.md375 $tokenCallback = function ($cacheKey, $accessToken) use ($logger) {
378 $client->setTokenCallback($tokenCallback);
/plugin/authgooglesheets/vendor/google/apiclient/src/AuthHandler/
H A DGuzzle5AuthHandler.php32 callable $tokenCallback = null argument
43 return $this->attachCredentialsCache($http, $credentials, $tokenCallback);
49 callable $tokenCallback = null argument
59 $tokenCallback
H A DGuzzle6AuthHandler.php32 callable $tokenCallback = null argument
43 return $this->attachCredentialsCache($http, $credentials, $tokenCallback);
49 callable $tokenCallback = null argument
59 $tokenCallback
/plugin/authgooglesheets/vendor/google/auth/src/Middleware/
H A DAuthTokenMiddleware.php50 private $tokenCallback; variable in Google\\Auth\\Middleware\\AuthTokenMiddleware
57 * @param callable $tokenCallback (optional) function to be called when a new token is fetched.
62 callable $tokenCallback = null argument
66 $this->tokenCallback = $tokenCallback;
126 if ($this->tokenCallback) {
128 $this->tokenCallback,
H A DProxyAuthTokenMiddleware.php50 private $tokenCallback; variable in Google\\Auth\\Middleware\\ProxyAuthTokenMiddleware
57 * @param callable $tokenCallback (optional) function to be called when a new token is fetched.
62 callable $tokenCallback = null argument
66 $this->tokenCallback = $tokenCallback;
126 if ($this->tokenCallback) {
128 $this->tokenCallback,