Browse Source
fix parameter type hint in phpdoc
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
pull/28422/head
Arthur Schiwon
4 years ago
No known key found for this signature in database
GPG Key ID: 7424F1874854DF23
2 changed files with
2 additions and
2 deletions
-
lib/private/Mail/EMailTemplate.php
-
lib/public/Mail/IEMailTemplate.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 |
|
|
|
|
|
|
|
@ -130,7 +130,7 @@ interface IEMailTemplate { |
|
|
|
* |
|
|
|
* @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 |
|
|
|
|