File manager - Edit - /var/www/payraty/hris/vendor/twilio/sdk/src/Twilio/CredentialProvider/OrgsCredentialProvider.php
Back
<?php namespace Twilio\CredentialProvider; use Twilio\AuthStrategy\AuthStrategy; use Twilio\AuthStrategy\TokenAuthStrategy; use Twilio\Exceptions\TwilioException; use Twilio\Http\BearerToken\OrgsTokenManager; use Twilio\Http\BearerToken\TokenManager; /** * Class OrgsCredentialProvider * Credential provider for OAuth in public apis */ class OrgsCredentialProvider extends CredentialProvider { /** * @var array $options - array of params required for token api */ private $options; /** * @var TokenManager $tokenManager - handles fetching and refreshing of token */ private $tokenManager; public function __construct() { parent::__construct("client-credentials"); $this->options = [ "grantType" => "client_credentials", "clientId" => null, "clientSecret" => null, "code" => null, "redirectUri" =>null, "audience" => null, "refreshToken" => null, "scope" => null ]; } /** * @return TokenManager */ public function getTokenManager(): TokenManager { return $this->tokenManager; } /** * @param TokenManager $tokenManager */ public function setTokenManager(TokenManager $tokenManager): void { $this->tokenManager = $tokenManager; } /** * Magic method to get properties - returns the property if it exists in the options array * @param string $name * @return mixed value of the property * @throws TwilioException */ public function __get(string $name) { if (array_key_exists($name, $this->options)) { return $this->options[$name]; } throw new TwilioException('Unknown property ' . $name); } /** * Magic method to set properties - sets the value of the property if it exists in the options array * @param string $name * @param $value * @return void * @throws TwilioException */ public function __set(string $name, $value) { if (array_key_exists($name, $this->options)) { $this->options[$name] = $value; } else { throw new TwilioException('Unknown property ' . $name); } } /** * Returns TokenAuthStrategy using OrgsTokenManager * @return AuthStrategy */ public function toAuthStrategy(): AuthStrategy { if ($this->tokenManager === null) { $this->tokenManager = new OrgsTokenManager($this->options); } return new TokenAuthStrategy($this->tokenManager); } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings