Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2017-10-19 11:18:21 +02:00
parent dcb322a6b3
commit 65e938c4fd
No known key found for this signature in database
GPG Key ID: E166FD8976B3BAC8
2 changed files with 8 additions and 8 deletions

View File

@ -45,9 +45,9 @@ class Message implements IMessage {
}
/**
* @param string $data
* @param string $filename
* @param string $contentType
* @param string|null $data
* @param string|null $filename
* @param string|null $contentType
* @return IAttachment
* @since 13.0.0
*/
@ -57,7 +57,7 @@ class Message implements IMessage {
/**
* @param string $path
* @param string $contentType
* @param string|null $contentType
* @return IAttachment
* @since 13.0.0
*/

View File

@ -30,9 +30,9 @@ namespace OCP\Mail;
interface IMessage {
/**
* @param string $data
* @param string $filename
* @param string $contentType
* @param string|null $data
* @param string|null $filename
* @param string|null $contentType
* @return IAttachment
* @since 13.0.0
*/
@ -40,7 +40,7 @@ interface IMessage {
/**
* @param string $path
* @param string $contentType
* @param string|null $contentType
* @return IAttachment
* @since 13.0.0
*/