diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2021-08-24 17:43:21 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2021-09-09 14:03:35 +0200 |
commit | 37f510cec28cbca0c849101e471b83293fd30aad (patch) | |
tree | 75194bde604fcf08c8c6f21cd43e050b6b6d3759 /lib/private/Mail | |
parent | aacaad2a3f56893c6be463ec7a21c868322654ee (diff) | |
download | nextcloud-server-37f510cec28cbca0c849101e471b83293fd30aad.tar.gz nextcloud-server-37f510cec28cbca0c849101e471b83293fd30aad.zip |
fix parameter type hint in phpdoc
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'lib/private/Mail')
-rw-r--r-- | lib/private/Mail/EMailTemplate.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Mail/EMailTemplate.php b/lib/private/Mail/EMailTemplate.php index efe1a6eef1d..a83f7787829 100644 --- a/lib/private/Mail/EMailTemplate.php +++ b/lib/private/Mail/EMailTemplate.php @@ -568,7 +568,7 @@ EOF; * * @param string $text Text of button; Note: When $plainText falls back to this, HTML is automatically escaped in the HTML email * @param string $url URL of button - * @param string $plainText Text of button in plain text version + * @param string|false $plainText Text of button in plain text version * if empty the $text is used, if false none will be used * * @since 12.0.0 |