Skip to content

Commit

Permalink
More phpdoc cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Synchro committed Jul 30, 2013
1 parent 6720e98 commit b9e61c6
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions PHPMailerAutoload.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?php
/**
* PHPMailer - PHP email creation and transport class
* PHPMailer SPL autoloader.
* PHP Version 5.0.0
* @package PHPMailer
* @link https://github.com/PHPMailer/PHPMailer/
* @author Marcus Bointon (coolbru) [email protected]
* @author Jim Jagielski (jimjag) [email protected]
* @author Andy Prevost (codeworxtech) [email protected]
* @author Marcus Bointon (coolbru) <[email protected]>
* @author Jim Jagielski (jimjag) <[email protected]>
* @author Andy Prevost (codeworxtech) <[email protected]>
* @author Brent R. Matzelle (original founder)
* @copyright 2013 Marcus Bointon
* @copyright 2010 - 2012 Jim Jagielski
Expand All @@ -18,8 +18,8 @@
*/

/**
* Define an SPL autoloader for PHPMailer classes
* @param string The name of the class to load
* PHPMailer SPL autoloader.
* @param string $classname The name of the class to load
*/
function PHPMailerAutoload($classname)
{
Expand Down
2 changes: 1 addition & 1 deletion class.phpmailer.php
Original file line number Diff line number Diff line change
Expand Up @@ -3222,7 +3222,7 @@ protected function doCallback($isSent, $to, $cc, $bcc, $subject, $body, $from =
}

/**
* Exception handler for PHPMailer
* PHPMailer exception handler
* @package PHPMailer
*/
class phpmailerException extends Exception
Expand Down
4 changes: 2 additions & 2 deletions class.pop3.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* PHPMailer - PHP POP-Before-SMTP Authentication Class
* PHPMailer POP-Before-SMTP Authentication Class.
* PHP Version 5.0.0
* Version 5.2.7
* @package PHPMailer
Expand All @@ -19,7 +19,7 @@
*/

/**
* PHP POP-Before-SMTP Authentication Class.
* PHPMailer POP-Before-SMTP Authentication Class.
* Specifically for PHPMailer to use for RFC1939 POP-before-SMTP authentication.
* Does not support APOP.
* @package PHPMailer
Expand Down
4 changes: 2 additions & 2 deletions class.smtp.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* SMTP email transport class.
* PHPMailer RFC821 SMTP email transport class.
* Version 5.2.7
* PHP version 5.0.0
* @category PHP
Expand All @@ -16,7 +16,7 @@
*/

/**
* PHP RFC821 SMTP email transport class.
* PHPMailer RFC821 SMTP email transport class.
*
* Implements RFC 821 SMTP commands
* and provides some utility methods for sending mail to an SMTP server.
Expand Down

0 comments on commit b9e61c6

Please sign in to comment.