mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fixed phpdoc.
This commit is contained in:
parent
98afe4e09b
commit
baba9fd270
1 changed files with 5 additions and 5 deletions
|
@ -69,28 +69,28 @@ class CakeEmail {
|
|||
/**
|
||||
* Recipient of the email
|
||||
*
|
||||
* @var string
|
||||
* @var array
|
||||
*/
|
||||
protected $_to = array();
|
||||
|
||||
/**
|
||||
* The mail which the email is sent from
|
||||
*
|
||||
* @var string
|
||||
* @var array
|
||||
*/
|
||||
protected $_from = array();
|
||||
|
||||
/**
|
||||
* The email the recipient will reply to
|
||||
*
|
||||
* @var string
|
||||
* @var array
|
||||
*/
|
||||
protected $_replyTo = array();
|
||||
|
||||
/**
|
||||
* The read receipt email
|
||||
*
|
||||
* @var string
|
||||
* @var array
|
||||
*/
|
||||
protected $_readReceipt = array();
|
||||
|
||||
|
@ -100,7 +100,7 @@ class CakeEmail {
|
|||
* - Remote user has exceeded his quota
|
||||
* - Unknown user
|
||||
*
|
||||
* @var string
|
||||
* @var array
|
||||
*/
|
||||
protected $_returnPath = array();
|
||||
|
||||
|
|
Loading…
Reference in a new issue