]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/mailer/debug/class_DebugMailer.php
As of a good naming convention, do not short-cut variables
[core.git] / inc / classes / main / mailer / debug / class_DebugMailer.php
index 832c460717a61a210fc73911b460db6dd8bb158f..a22a0ba213b1192e7437a2362d3fb6027765ef92 100644 (file)
@@ -36,12 +36,12 @@ class DebugMailer extends BaseMailer implements DeliverableMail {
        /**
         * Creates an instance of this mailer class
         *
-        * @param       $templateInstance       A template instance
-        * @param       $appInstance            An application helper class
-        * @param       $templateName           Name of email template to set
-        * @return      $mailerInstance         An instance of this mailer class
+        * @param       $templateInstance               A template instance
+        * @param       $applicationInstance    An application helper class
+        * @param       $templateName                   Name of email template to set
+        * @return      $mailerInstance                 An instance of this mailer class
         */
-       public static final function createDebugMailer (CompileableTemplate $templateInstance, ManageableApplication $appInstance, $templateName) {
+       public static final function createDebugMailer (CompileableTemplate $templateInstance, ManageableApplication $applicationInstance, $templateName) {
                // Get a new instance
                $mailerInstance = new DebugMailer();
 
@@ -49,7 +49,7 @@ class DebugMailer extends BaseMailer implements DeliverableMail {
                $mailerInstance->setTemplateInstance($templateInstance);
 
                // Set application instance
-               $mailerInstance->setApplicationInstance($appInstance);
+               $mailerInstance->setApplicationInstance($applicationInstance);
 
                // Set template name
                $mailerInstance->setTemplateName('resend_link');