From b9e61c6e0970c045845439f3ebb7efac8eb936af Mon Sep 17 00:00:00 2001 From: Synchro Date: Tue, 30 Jul 2013 12:42:50 +0200 Subject: [PATCH] More phpdoc cleanup --- PHPMailerAutoload.php | 12 ++++++------ class.phpmailer.php | 2 +- class.pop3.php | 4 ++-- class.smtp.php | 4 ++-- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/PHPMailerAutoload.php b/PHPMailerAutoload.php index 18bf1a03..46db5bd0 100644 --- a/PHPMailerAutoload.php +++ b/PHPMailerAutoload.php @@ -1,12 +1,12 @@ + * @author Jim Jagielski (jimjag) + * @author Andy Prevost (codeworxtech) * @author Brent R. Matzelle (original founder) * @copyright 2013 Marcus Bointon * @copyright 2010 - 2012 Jim Jagielski @@ -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) { diff --git a/class.phpmailer.php b/class.phpmailer.php index e798682a..b349eafb 100644 --- a/class.phpmailer.php +++ b/class.phpmailer.php @@ -3222,7 +3222,7 @@ class PHPMailer } /** - * Exception handler for PHPMailer + * PHPMailer exception handler * @package PHPMailer */ class phpmailerException extends Exception diff --git a/class.pop3.php b/class.pop3.php index d2780b38..83f2292e 100644 --- a/class.pop3.php +++ b/class.pop3.php @@ -1,6 +1,6 @@