/plugin/aichat/ |
H A D | Embeddings.php | 39 protected $storage; argument 56 * @param AbstractStorage $storage 62 AbstractStorage $storage, 67 $this->storage = $storage; 74 * Access storage 80 return $this->storage; 121 * Update the embeddings storage 125 * @param bool $clear Should any existing storage be cleared before updating? 134 $this->storage 31 protected $storage; global() variable in dokuwiki\\plugin\\aichat\\Embeddings [all...] |
/plugin/evesso/phpoauthlib/src/OAuth/ |
H A D | ServiceFactory.php | 97 * @param TokenStorageInterface $storage 106 TokenStorageInterface $storage, argument 119 …return $this->$buildMethod($fullyQualifiedServiceName, $credentials, $storage, $scopes, $baseApiUr… 150 * @param TokenStorageInterface $storage 161 TokenStorageInterface $storage, argument 168 $storage, 206 * @param TokenStorageInterface $storage 217 TokenStorageInterface $storage, argument 227 …return new $serviceName($credentials, $this->httpClient, $storage, new Signature($credentials), $b…
|
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/ |
H A D | ServiceFactory.php | 97 * @param TokenStorageInterface $storage 107 TokenStorageInterface $storage, argument 124 $storage, 159 * @param TokenStorageInterface $storage 170 TokenStorageInterface $storage, argument 178 $storage, 217 * @param TokenStorageInterface $storage 228 TokenStorageInterface $storage, argument 238 return new $serviceName($credentials, $this->httpClient, $storage, new Signature($credentials), $baseApiUri);
|
/plugin/evesso/phpoauthlib/src/OAuth/Common/Service/ |
H A D | AbstractService.php | 24 protected $storage; variable in OAuth\\Common\\Service\\AbstractService 29 * @param TokenStorageInterface $storage 34 TokenStorageInterface $storage argument 38 $this->storage = $storage; 87 return $this->storage;
|
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/Common/Service/ |
H A D | AbstractService.php | 24 protected $storage; variable in OAuth\\Common\\Service\\AbstractService 29 * @param TokenStorageInterface $storage 34 TokenStorageInterface $storage argument 38 $this->storage = $storage; 81 * Accessor to the storage adapter to be able to retrieve tokens 87 return $this->storage;
|
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/_files/ |
H A D | DataProviderDebugTest.php | 33 $storage = new \SplObjectStorage(); 34 $storage->attach($obj2); 35 $storage->foo = $obj2; 43 [new \stdClass(), $obj, [], $storage, $obj3],
|
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/OAuth2/Service/ |
H A D | Mailchimp.php | 18 TokenStorageInterface $storage, argument 22 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri); 24 if (is_null($this->baseApiUri) && $storage->hasAccessToken($this->service())) { 25 $this->setBaseApiUri($storage->retrieveAccessToken($this->service())); 86 $this->setBaseApiUri($this->storage->retrieveAccessToken($this->service()));
|
H A D | AbstractService.php | 42 TokenStorageInterface $storage, argument 48 parent::__construct($credentials, $httpClient, $storage); 121 $this->storage->storeAccessToken($this->service(), $token); 141 $token = $this->storage->retrieveAccessToken($this->service()); 179 * Accessor to the storage adapter to be able to retrieve tokens. 185 return $this->storage; 215 $this->storage->storeAccessToken($this->service(), $token); 273 return $this->storage->retrieveAuthorizationState($this->service()); 277 * Stores a given authorization state into the storage. 283 $this->storage [all...] |
H A D | Bitly.php | 18 TokenStorageInterface $storage, argument 22 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri); 107 $this->storage->storeAccessToken($this->service(), $token);
|
H A D | Delicious.php | 32 TokenStorageInterface $storage, argument 39 $storage, 135 $this->storage->storeAccessToken($this->service(), $token);
|
H A D | Pocket.php | 18 TokenStorageInterface $storage, argument 22 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri); 101 $this->storage->storeAccessToken($this->service(), $token);
|
H A D | Foursquare.php | 20 TokenStorageInterface $storage, argument 24 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri);
|
H A D | Instagram.php | 29 TokenStorageInterface $storage, argument 33 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri, true);
|
H A D | Box.php | 24 TokenStorageInterface $storage, argument 28 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri, true);
|
H A D | Dropbox.php | 24 TokenStorageInterface $storage, argument 28 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri);
|
H A D | Mondo.php | 18 TokenStorageInterface $storage, argument 22 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri, true);
|
H A D | Nest.php | 33 TokenStorageInterface $storage, argument 40 $storage,
|
H A D | RunKeeper.php | 23 TokenStorageInterface $storage, argument 27 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri);
|
H A D | SoundCloud.php | 18 TokenStorageInterface $storage, argument 22 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri);
|
/plugin/findologicxmlexport/vendor/sebastian/recursion-context/tests/ |
H A D | ContextTest.php | 66 $storage = new \SplObjectStorage(); 67 $storage->attach($obj2); 68 $storage->foo = $obj2; 74 array($storage, spl_object_hash($storage)),
|
/plugin/evesso/phpoauthlib/src/OAuth/OAuth2/Service/ |
H A D | AbstractService.php | 35 * @param TokenStorageInterface $storage 45 TokenStorageInterface $storage, argument 50 parent::__construct($credentials, $httpClient, $storage); 121 $this->storage->storeAccessToken($this->service(), $token); 144 $token = $this->storage->retrieveAccessToken($this->service()); 184 return $this->storage; 218 $this->storage->storeAccessToken($this->service(), $token); 277 return $this->storage->retrieveAuthorizationState($this->service()); 287 $this->storage->storeAuthorizationState($this->service(), $state);
|
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/OAuth1/Service/ |
H A D | AbstractService.php | 32 TokenStorageInterface $storage, argument 36 parent::__construct($credentials, $httpClient, $storage); 55 $this->storage->storeAccessToken($this->service(), $token); 80 $storedRequestToken = $this->storage->retrieveAccessToken($this->service()); 93 $this->storage->retrieveAccessToken($this->service()), 103 $this->storage->storeAccessToken($this->service(), $token); 134 $token = $this->storage->retrieveAccessToken($this->service());
|
H A D | Yahoo.php | 20 TokenStorageInterface $storage, argument 24 parent::__construct($credentials, $httpClient, $storage, $signature, $baseApiUri); 67 $this->storage->retrieveAccessToken($this->service()), 79 $this->storage->storeAccessToken($this->service(), $token);
|
/plugin/findologicxmlexport/vendor/sebastian/exporter/tests/ |
H A D | ExporterTest.php | 49 $storage = new \SplObjectStorage; 50 $storage->attach($obj2); 51 $storage->foo = $obj2; 126 array($storage,
|
/plugin/a2s/ |
H A D | demo.txt | 111 "a2s:type":"storage" 291 |[document]| : |[storage] | | |[printer] | 314 [storage]: {"a2s:type":"storage"} 332 |[document]| : |[storage] | | |[printer] | 355 [storage]: {"a2s:type":"storage"} 374 |[storage] | |[document]| 386 storage: : document : 396 [storage]: {"a2s:type":"storage","fill":"#a7ffbe","a2s:delref":true} 403 |[storage] | |[document]| 415 storage: : document : [all …]
|