1<?php 2 3namespace MatrixPhp\Crypto; 4 5use MatrixPhp\MatrixHttpApi; 6 7/** 8 * OlmDevice stub for typehinting 9 * 10 * @package MatrixPhp\Crypto 11 */ 12class 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} 28