PhpDoc and naming fixes

This commit is contained in:
evilbloodydemon 2011-04-19 22:02:35 +04:00 committed by Juan Basso
parent 1004b1a168
commit 8443b66986

View file

@ -217,7 +217,7 @@ class CakeEmail {
protected $_transportName = 'mail'; protected $_transportName = 'mail';
/** /**
* Instance of tranport class * Instance of transport class
* *
* @var object * @var object
*/ */
@ -501,7 +501,7 @@ class CakeEmail {
} }
/** /**
* Sets eaders for the message * Sets headers for the message
* *
* @param array Associative array containing headers to be set. * @param array Associative array containing headers to be set.
* @return object $this * @return object $this
@ -846,7 +846,7 @@ class CakeEmail {
* Send an email using the specified content, template and layout * Send an email using the specified content, template and layout
* *
* @return boolean Success * @return boolean Success
* @thrown SocketExpcetion * @thrown SocketException
*/ */
public function send($content = null) { public function send($content = null) {
if (is_string($this->_config)) { if (is_string($this->_config)) {
@ -873,7 +873,7 @@ class CakeEmail {
} }
} }
if (empty($this->_to) && empty($this->_cc) && empty($this->_bcc)) { if (empty($this->_to) && empty($this->_cc) && empty($this->_bcc)) {
throw new SocketExpcetion(__d('cake', 'You need specify one destination on to, cc or bcc.')); throw new SocketException(__d('cake', 'You need specify one destination on to, cc or bcc.'));
} }
if (is_array($content)) { if (is_array($content)) {