Update the PHPDocs to modify the invalid types of parameters

git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@3272 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
This commit is contained in:
2016-12-08 15:33:26 +00:00
parent 1ddc03dcbb
commit 3a004fbdc0
7 changed files with 61 additions and 60 deletions

View File

@@ -417,9 +417,9 @@ class mail
/** Define a HTML body. If the HTML body already exists, overwrite it
* If there is an text body, manage the boundary in alternative mode
* @param $htmlContent in UTF-8
* @param $charset to be stored in the mail
* @param $encoding the encoding in the mail
* @param string $htmlContent in UTF-8
* @param string $charset to be stored in the mail
* @param string $encoding the encoding in the mail
*/
public function setBodyHTML ($htmlContent, $charset="utf-8",
$encoding="quoted-printable")
@@ -520,9 +520,9 @@ class mail
/** Add a Text body. If the text body already exists, overwrite it
* If there is an HTML body, manage the boundary in alternative mode
* @param $textContent in UTF-8
* @param $charset to be stored in the mail
* @param $encoding the encoding in the mail
* @param string $textContent in UTF-8
* @param string $charset to be stored in the mail
* @param string $encoding the encoding in the mail
*/
public function setBodyText ($textContent, $charset="utf-8",
$encoding="quoted-printable")