当前位置: 首页>>代码示例>>PHP>>正文


PHP AbstractProvider::__construct方法代码示例

本文整理汇总了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]);
     }
 }
开发者ID:slowprog,项目名称:oauth2-modulbank,代码行数:18,代码来源:Modulbank.php

示例2: __construct

 public function __construct($options = [])
 {
     if (empty($options['domainPrefix'])) {
         throw new \RuntimeException('Vend provider requires a "domainPrefix" option');
     }
     parent::__construct($options);
 }
开发者ID:wheniwork,项目名称:oauth2-vend,代码行数:7,代码来源:Vend.php

示例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/';
     }
 }
开发者ID:6by6,项目名称:freeagent-php,代码行数:11,代码来源:Provider.php

示例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();
 }
开发者ID:octahedron,项目名称:octasync-magento,代码行数:7,代码来源:Api.php

示例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']);
     }
 }
开发者ID:tmannherz,项目名称:oauth2-ringcentral,代码行数:11,代码来源:Ringcentral.php

示例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);
 }
开发者ID:omines,项目名称:oauth2-gitlab,代码行数:13,代码来源:Gitlab.php

示例7: __construct

 public function __construct($options = [])
 {
     parent::__construct($options);
     if (isset($options['testMode'])) {
         $this->testMode = $options['testMode'];
     }
 }
开发者ID:lemonstand,项目名称:oauth2-amazon,代码行数:7,代码来源:Amazon.php

示例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.');
     }
 }
开发者ID:stevenmaguire,项目名称:oauth2-zendesk,代码行数:18,代码来源:Zendesk.php

示例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);
 }
开发者ID:eds,项目名称:oauth-client,代码行数:7,代码来源:QQ.php

示例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']);
 }
开发者ID:schoolrunner,项目名称:oauth2-clever,代码行数:21,代码来源:Clever.php

示例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);
 }
开发者ID:stevenmaguire,项目名称:oauth2-keycloak,代码行数:19,代码来源:Keycloak.php

示例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);
 }
开发者ID:angelcam,项目名称:angelcam-sdk-php,代码行数:11,代码来源:Angelcam.php

示例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'], '/');
 }
开发者ID:xintesa,项目名称:socialites,代码行数:8,代码来源:CroogoProvider.php

示例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']);
 }
开发者ID:indibeast,项目名称:oauth2-human,代码行数:8,代码来源:Human.php

示例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'];
 }
开发者ID:savks,项目名称:oauth2-facebook,代码行数:9,代码来源:Facebook.php


注:本文中的League\OAuth2\Client\Provider\AbstractProvider::__construct方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。