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
path: root/lib/Model
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-10-09 10:52:21 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-10-09 10:52:21 +0300
commite0498435f1b02ac5ad4f8e9d3e6b5222067d47d9 (patch)
treee981ab2a0bd0e1d319aa8dfa383540ed66612006 /lib/Model
parentee2477532fe16c3db3e5131b667c745b08e783df (diff)
Fix wrong documented type
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/Model')
-rw-r--r--lib/Model/IMAPMessage.php2
-rw-r--r--lib/Model/IMessage.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/Model/IMAPMessage.php b/lib/Model/IMAPMessage.php
index d34a6eff0..c403b1322 100644
--- a/lib/Model/IMAPMessage.php
+++ b/lib/Model/IMAPMessage.php
@@ -145,7 +145,7 @@ class IMAPMessage implements IMessage, JsonSerializable {
}
/**
- * @param string $flags
+ * @param array $flags
*
* @throws Exception
*
diff --git a/lib/Model/IMessage.php b/lib/Model/IMessage.php
index f5a56d613..971b3c596 100644
--- a/lib/Model/IMessage.php
+++ b/lib/Model/IMessage.php
@@ -46,7 +46,7 @@ interface IMessage {
public function getFlags(): array;
/**
- * @param string $flags
+ * @param array $flags
*/
public function setFlags(array $flags);