dokuwiki-matrixnotifierwas-plugin – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 <?php
2  
3 namespace MatrixPhp\Crypto;
4  
5 use MatrixPhp\MatrixHttpApi;
6  
7 /**
8 * OlmDevice stub for typehinting
9 *
10 * @package MatrixPhp\Crypto
11 */
12 class OlmDevice {
13  
14 public function __construct(MatrixHttpApi $client, string $userId, ?string $deviceId, array &$encryptionConf) {
15 }
16  
17 public function uploadIdentityKeys() {
18 }
19  
20 public function uploadOneTimeKeys() {
21 }
22  
23 public function updateOneTimeKeysCounts($device_one_time_keys_count) {
24  
25 }
26  
27 }