Searched refs:stateKey (Results 1 – 5 of 5) sorted by relevance
| /plugin/authgoogle/google/contrib/ |
| D | Google_AppstateService.php | 32 * @param int $stateKey The key for the data to be retrieved. 38 public function clear($stateKey, $optParams = array()) { argument 39 $params = array('stateKey' => $stateKey); 54 * @param int $stateKey The key for the data to be retrieved. 57 public function delete($stateKey, $optParams = array()) { argument 58 $params = array('stateKey' => $stateKey); 66 * @param int $stateKey The key for the data to be retrieved. 70 public function get($stateKey, $optParams = array()) { argument 71 $params = array('stateKey' => $stateKey); 103 * @param int $stateKey The key for the data to be retrieved. [all …]
|
| /plugin/evesso/phpoauthlib/src/OAuth/Common/Storage/ |
| D | Redis.php | 20 protected $stateKey; variable in OAuth\\Common\\Storage\\Redis 40 * @param string $stateKey The key to store the state under in redis. 42 public function __construct(Predis $redis, $key, $stateKey) argument 46 $this->stateKey = $stateKey; 146 $val = $this->redis->hget($this->stateKey, $service); 157 $this->redis->hset($this->stateKey, $service, $state); 175 return $this->redis->hexists($this->stateKey, $service); 183 $this->redis->hdel($this->stateKey, $service); 199 $keys = $this->redis->hkeys($this->stateKey);
|
| /plugin/oauth/vendor/lusitanian/oauth/src/OAuth/Common/Storage/ |
| H A D | Redis.php | 20 protected $stateKey; variable in OAuth\\Common\\Storage\\Redis 40 * @param string $stateKey The key to store the state under in redis. 42 public function __construct(Predis $redis, $key, $stateKey) argument 46 $this->stateKey = $stateKey; 146 $val = $this->redis->hget($this->stateKey, $service); 157 $this->redis->hset($this->stateKey, $service, $state); 175 return $this->redis->hexists($this->stateKey, $service); 183 $this->redis->hdel($this->stateKey, $service); 199 $keys = $this->redis->hkeys($this->stateKey);
|
| /plugin/matrixnotifierwas/vendor/meet-kinksters/php-matrix-sdk/src/ |
| D | Room.php | 547 * @param string $stateKey Optional. A unique key to identify the state. 550 public function sendStateEvent(string $eventType, array $content, string $stateKey = '') { argument 551 $this->api()->sendStateEvent($this->roomId, $eventType, $content, $stateKey);
|
| D | MatrixHttpApi.php | 276 * @param string $stateKey Optional. The state key for the event. 282 string $stateKey = "", int $timestamp = null) { argument 284 if ($stateKey) { 285 $path .= sprintf("/%s", urlencode($stateKey));
|