Example #1
0
 /**
  * @param CredentialsInterface $credentials
  * @param ClientInterface $httpClient
  * @param TokenStorageInterface $storage
  * @param array $scopes
  * @param UriInterface $baseApiUri
  * @param Service $service
  */
 public function __construct(CredentialsInterface $credentials, ClientInterface $httpClient, TokenStorageInterface $storage, $scopes = array(), UriInterface $baseApiUri = null, Service $service)
 {
     $this->service = $service;
     parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri, $service->getValidateState());
 }