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>2019-09-27 11:09:53 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2019-09-27 12:12:27 +0300
commit6db83df64aafabc2cf528181d4e483f27130d876 (patch)
tree55f79c61da77a583f084637c8b14ffbe17b4f35c /lib/Contracts
parentb5ddae4e1534bb45c5f81a9743d7c943d04712a5 (diff)
Make \OCA\Mail\Model\RepliedMessageData nullable, not its properties
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/Contracts')
-rw-r--r--lib/Contracts/IMailTransmission.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Contracts/IMailTransmission.php b/lib/Contracts/IMailTransmission.php
index c19273f75..8fac27775 100644
--- a/lib/Contracts/IMailTransmission.php
+++ b/lib/Contracts/IMailTransmission.php
@@ -42,7 +42,7 @@ interface IMailTransmission {
*/
public function sendMessage(string $userId,
NewMessageData $message,
- RepliedMessageData $reply,
+ RepliedMessageData $reply = null,
Alias $alias = null,
int $draftUID = null);