Updated the function description of class methods.

This commit is contained in:
Stefan Brannfjell 2014-09-06 23:34:37 +02:00
parent 3c8474db34
commit 7b4ad9c854

View File

@ -3,7 +3,7 @@ class Mail {
protected $_config = false; protected $_config = false;
/** /**
* @param string $file * @param array $config
* @access public * @access public
* @return void * @return void
**/ **/
@ -14,9 +14,9 @@ class Mail {
/** /**
* Sets the cache expiration limit (IMPORTANT NOTE: seconds, NOT ms!). * Sets the cache expiration limit (IMPORTANT NOTE: seconds, NOT ms!).
* *
* @param integer $span * @param string $to, string $title, string $text, string $accname
* @access public * @access public
* @return void * @return boolean
**/ **/
public function sendMail($to, $title, $text, $accname = '') { public function sendMail($to, $title, $text, $accname = '') {
//SMTP needs accurate times, and the PHP time zone MUST be set //SMTP needs accurate times, and the PHP time zone MUST be set