mantis-matrix-integration – Rev 1

Subversion Repositories:
Rev:
<?php

namespace MatrixPhp\Crypto;

use MatrixPhp\MatrixHttpApi;

/**
 * OlmDevice stub for typehinting
 *
 * @package MatrixPhp\Crypto
 */
class OlmDevice {

    public function __construct(
        protected MatrixHttpApi $client,
        protected string $userId,
        protected ?string $deviceId,
        protected array &$encryptionConf,
    ) {
    }

    public function uploadIdentityKeys() {
    }

    public function uploadOneTimeKeys() {
    }

    public function updateOneTimeKeysCounts($device_one_time_keys_count) {

    }

}