本文整理汇总了PHP中League\OAuth2\Client\Provider\AbstractProvider::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP AbstractProvider::__construct方法的具体用法?PHP AbstractProvider::__construct怎么用?PHP AbstractProvider::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类League\OAuth2\Client\Provider\AbstractProvider
的用法示例。
在下文中一共展示了AbstractProvider::__construct方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
/**
* Constructs an OAuth 2.0 service provider.
*
* @param array $options An array of options to set on this provider.
* Options include `clientId`, `clientSecret`, `redirectUri`, and `state`.
* Individual providers may introduce more options, as needed.
* @param array $collaborators An array of collaborators that may be used to
* override this provider's default behavior. Collaborators include
* `grantFactory`, `requestFactory`, `httpClient`, and `randomFactory`.
* Individual providers may introduce more collaborators, as needed.
*/
public function __construct(array $options = [], array $collaborators = [])
{
parent::__construct($options, $collaborators);
if ($this->token) {
$this->token = new ModulbankAccessToken(['accessToken' => $this->token]);
}
}
示例2: __construct
public function __construct($options = [])
{
if (empty($options['domainPrefix'])) {
throw new \RuntimeException('Vend provider requires a "domainPrefix" option');
}
parent::__construct($options);
}
示例3: __construct
/**
* Provider constructor.
* @param array $options
*/
public function __construct(array $options = array())
{
parent::__construct($options);
if (isset($options['sandbox']) && $options['sandbox']) {
$this->baseURL = 'https://api.sandbox.freeagent.com/v2/';
}
}
示例4: __construct
public function __construct()
{
parent::__construct(['clientId' => Mage::getStoreConfig('octahedron_pos/connection/client_id'), 'clientSecret' => Mage::getStoreConfig('octahedron_pos/connection/client_secret')]);
$this->url = 'https://' . Mage::getStoreConfig('octahedron_pos/connection/url');
$this->headers['Accept'] = 'application/json';
$this->cache = Mage::app()->getCache();
}
示例5: __construct
/**
* @param array $options
* @param array $collaborators
*/
public function __construct($options = [], array $collaborators = [])
{
parent::__construct($options);
if (isset($options['devMode'])) {
$this->setDevMode($options['devMode']);
}
}
示例6: __construct
/**
* Gitlab constructor.
*
* @param array $options
* @param array $collaborators
*/
public function __construct(array $options, array $collaborators = [])
{
if (isset($options['domain'])) {
$this->domain = $options['domain'];
}
parent::__construct($options, $collaborators);
}
示例7: __construct
public function __construct($options = [])
{
parent::__construct($options);
if (isset($options['testMode'])) {
$this->testMode = $options['testMode'];
}
}
示例8: __construct
/**
* Constructs an OAuth 2.0 service provider.
*
* @param array $options An array of options to set on this provider.
* Options include `clientId`, `clientSecret`, `redirectUri`, and `state`.
* Individual providers may introduce more options, as needed.
* @param array $collaborators An array of collaborators that may be used to
* override this provider's default behavior. Collaborators include
* `grantFactory`, `requestFactory`, `httpClient`, and `randomFactory`.
* Individual providers may introduce more collaborators, as needed.
*/
public function __construct(array $options = [], array $collaborators = [])
{
parent::__construct($options, $collaborators);
if (empty($this->subdomain)) {
throw new Exception\ProviderConfigurationException('No subdomain has been configured for this Zendesk provider; it has to have a subdomain.');
}
}
示例9: __construct
public function __construct($options = [])
{
if (!array_has($options, 'redirectUri')) {
$options['redirectUri'] = 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'] . '?' . $_SERVER['QUERY_STRING'];
}
parent::__construct($options);
}
示例10: __construct
/**
* Constructs an OAuth 2.0 service provider.
*
* Override to add UserFactory
*
* @param array $options An array of options to set on this provider.
* Options include `clientId`, `clientSecret`, `redirectUri`, and `state`.
* Individual providers may introduce more options, as needed.
* @param array $collaborators An array of collaborators that may be used to
* override this provider's default behavior. Collaborators include
* `grantFactory`, `requestFactory`, `httpClient`, and `randomFactory`.
* Individual providers may introduce more collaborators, as needed.
*/
public function __construct(array $options = [], array $collaborators = [])
{
parent::__construct($options, $collaborators);
if (empty($collaborators['userFactory'])) {
$collaborators['userFactory'] = new UserFactory();
}
$this->setUserFactory($collaborators['userFactory']);
}
示例11: __construct
/**
* Constructs an OAuth 2.0 service provider.
*
* @param array $options An array of options to set on this provider.
* Options include `clientId`, `clientSecret`, `redirectUri`, and `state`.
* Individual providers may introduce more options, as needed.
* @param array $collaborators An array of collaborators that may be used to
* override this provider's default behavior. Collaborators include
* `grantFactory`, `requestFactory`, `httpClient`, and `randomFactory`.
* Individual providers may introduce more collaborators, as needed.
*/
public function __construct(array $options = [], array $collaborators = [])
{
if (isset($options['encryptionKeyPath'])) {
$this->setEncryptionKeyPath($options['encryptionKeyPath']);
unset($options['encryptionKeyPath']);
}
parent::__construct($options, $collaborators);
}
示例12: __construct
/**
* {@inheritdoc}
*/
public function __construct(array $options = [], array $collaborators = [])
{
if (!empty($options['domain'])) {
$this->domain = $options['domain'];
// for custom environments
}
parent::__construct($options, $collaborators);
}
示例13: __construct
public function __construct($options = array())
{
if (empty($options['rootUrl'])) {
throw new UnexpectedValueException('Missing rootUrl configuration');
}
parent::__construct($options);
$this->_domain = rtrim($options['rootUrl'], '/');
}
示例14: __construct
public function __construct(array $options = [], array $collaborators = [])
{
parent::__construct($options, $collaborators);
if (!isset($options['account'])) {
throw new HumanClientException('Account must be supllied');
}
$this->changeDomainUrl($options['account']);
}
示例15: __construct
public function __construct($options = [])
{
parent::__construct($options);
if (empty($options['graphApiVersion'])) {
$message = 'The "graphApiVersion" option not set. Please set a default Graph API version.';
throw new \InvalidArgumentException($message);
}
$this->graphApiVersion = $options['graphApiVersion'];
}