Home
last modified time | relevance | path

Searched refs:array_get (Results 1 – 7 of 7) sorted by relevance

/plugin/matrixnotifierwas/vendor/meet-kinksters/php-matrix-sdk/src/
DMatrixClient.php167 $this->userId = array_get($response, 'user_id');
168 $this->token = array_get($response, 'access_token');
169 $this->hs = array_get($response, 'home_server');
228 $this->userId = array_get($response, 'user_id');
229 $this->token = array_get($response, 'access_token');
230 $this->hs = array_get($response, 'home_server');
232 $this->deviceId = array_get($response, 'device_id');
284 $roomId = array_get($response, 'room_id', $roomIdOrAlias);
490 foreach (array_get($response, 'presence.events', []) as $presenceUpdate) {
495 foreach (array_get($response, 'rooms.invite', []) as $roomId => $inviteRoom) {
[all …]
DRoom.php512 $newName = array_get($response, 'name', $this->name);
564 $this->topic = array_get($response, 'topic', $this->topic);
602 if ($aliases = array_get($chunk, 'content.aliases')) {
636 if (array_get($event, 'event.membership') == 'join') {
638 $this->addMember($userId, array_get($event, 'content.displayname'));
845 $this->name = array_get($econtent, 'name');
848 $this->canonicalAlias = array_get($econtent, 'alias');
851 $this->topic = array_get($econtent, 'topic');
854 $this->aliases = array_get($econtent, 'aliases');
863 $this->encrypted = array_get($econtent, 'algorithm') ? true : $this->encrypted;
[all …]
DMatrixHttpApi.php92 if (!array_get(parse_url($baseUrl), 'scheme')) {
964 $waitTime = array_get($jsonResponse, 'retry_after_ms');
965 …$waitTime = $waitTime ?: array_get($jsonResponse, 'error.retry_after_ms', $this->default429WaitMs);
1007 return array_get($content, 'displayname');
1035 return array_get($content, 'avatar_url');
1162 return array_get($content, 'room_id');
DUser.php42 return array_get($room->getMembersDisplayNames(), $this->userId, $this->userId);
/plugin/matrixnotifierwas/vendor/meet-kinksters/php-matrix-sdk/tests/
DMatrixHttpApiTest.php130 $req = array_get($container, '0.request');
254 $req = array_get($container, '0.request');
291 $req = array_get($container, '0.request');
/plugin/matrixnotifierwas/vendor/rappasoft/laravel-helpers/
Dreadme.md31 * [array_get](#array_get)
227 ### array_get subsection
228 <a name="array_get"/>
239 function array_get($array, $key, $default = null)
/plugin/matrixnotifierwas/vendor/rappasoft/laravel-helpers/src/
Dhelpers.php245 function array_get($array, $key, $default = null) function