Skip to content

Commit

Permalink
Remove unnecessary TODOs
Browse files Browse the repository at this point in the history
  • Loading branch information
Synchro committed Jun 5, 2014
1 parent e6787f4 commit 42030ef
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions class.phpmailer.php
Expand Up @@ -644,7 +644,6 @@ protected function edebug($str)

/**
* Sets message type to HTML or plain.
* @TODO rename to setBodyHtml
* @param bool $isHtml True for HTML mode.
* @return void
*/
Expand All @@ -659,7 +658,6 @@ public function isHTML($isHtml = true)

/**
* Send messages using SMTP.
* @TODO rename to setSmtp
* @return void
*/
public function isSMTP()
Expand All @@ -669,7 +667,6 @@ public function isSMTP()

/**
* Send messages using PHP's mail() function.
* @TODO rename to setPhpMailFn
* @return void
*/
public function isMail()
Expand All @@ -679,7 +676,6 @@ public function isMail()

/**
* Send messages using $Sendmail.
* @TODO rename to setSendmail
* @return void
*/
public function isSendmail()
Expand All @@ -696,7 +692,6 @@ public function isSendmail()

/**
* Send messages using qmail.
* @TODO rename to setQmail
* @return void
*/
public function isQmail()
Expand Down Expand Up @@ -2941,7 +2936,6 @@ public function html2text($html, $advanced = false)

/**
* Get the MIME type for a file extension.
* @TODO rename to mimeTypes
* @param string $ext File extension
* @access public
* @return string MIME type of file.
Expand Down Expand Up @@ -3064,7 +3058,6 @@ public static function filenameToType($filename)
* Multi-byte-safe pathinfo replacement.
* Drop-in replacement for pathinfo(), but multibyte-safe, cross-platform-safe, old-version-safe.
* Works similarly to the one in PHP >= 5.2.0
* @TODO rename to mbPathInfo
* @link http://www.php.net/manual/en/function.pathinfo.php#107461
* @param string $path A filename or path, does not need to exist as a file
* @param integer|string $options Either a PATHINFO_* constant,
Expand Down Expand Up @@ -3182,7 +3175,6 @@ public function sign($cert_filename, $key_filename, $key_pass)

/**
* Quoted-Printable-encode a DKIM header.
* @TODO rename to dkimQp
* @access public
* @param string $txt
* @return string
Expand All @@ -3203,7 +3195,6 @@ public function DKIM_QP($txt)

/**
* Generate a DKIM signature.
* @TODO rename to dkimSign
* @access public
* @param $signHeader string
* @throws phpmailerException
Expand Down Expand Up @@ -3231,7 +3222,6 @@ public function DKIM_Sign($signHeader)

/**
* Generate a DKIM canonicalization header.
* @TODO rename to dkimHeaderC
* @access public
* @param string $signHeader Header
* @return string
Expand All @@ -3252,7 +3242,6 @@ public function DKIM_HeaderC($signHeader)

/**
* Generate a DKIM canonicalization body.
* @TODO rename to dkimBodyC
* @access public
* @param string $body Message Body
* @return string
Expand All @@ -3274,7 +3263,6 @@ public function DKIM_BodyC($body)

/**
* Create the DKIM header and body in a new message header.
* @TODO rename to dkimAdd
* @access public
* @param string $headers_line Header lines
* @param string $subject Subject
Expand Down

0 comments on commit 42030ef

Please sign in to comment.