mantis-matrix-integration – 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(
15 protected MatrixHttpApi $client,
16 protected string $userId,
17 protected ?string $deviceId,
18 protected array &$encryptionConf,
19 ) {
20 }
21  
22 public function uploadIdentityKeys() {
23 }
24  
25 public function uploadOneTimeKeys() {
26 }
27  
28 public function updateOneTimeKeysCounts($device_one_time_keys_count) {
29  
30 }
31  
32 }