Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-09-04 14:39:15 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-09-04 14:40:42 +0300
commit1da7d202e0de2bee7de96d4b4e0a60d588e03a98 (patch)
tree138914a4d5bcdd37c24d105ca13098dd34d1493e /lib/Contracts
parent5311bf513aa8ef2b2a02a230f3ebdcd55886f397 (diff)
Fix the return type hint for IMailManager::getThread
It returns DB messages, not IMAP messages. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/Contracts')
-rw-r--r--lib/Contracts/IMailManager.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Contracts/IMailManager.php b/lib/Contracts/IMailManager.php
index e3b4b6a5b..cbe727933 100644
--- a/lib/Contracts/IMailManager.php
+++ b/lib/Contracts/IMailManager.php
@@ -121,7 +121,7 @@ interface IMailManager {
* @param Account $account
* @param int $messageId database message ID
*
- * @return IMAPMessage[]
+ * @return Message[]
*/
public function getThread(Account $account, int $messageId): array;