]> git.mxchange.org Git - core.git/blobdiff - framework/main/exceptions/user/class_UserEmailMissingException.php
Continued:
[core.git] / framework / main / exceptions / user / class_UserEmailMissingException.php
index 4f49adbddb29af0713408fa50e88b7549bb75849..19d5736770607ce4be7cf257ae9e942fe2c7d50d 100644 (file)
@@ -31,16 +31,16 @@ class UserEmailMissingException extends FrameworkException {
        /**
         * The super constructor for all exceptions
         *
-        * @param       $msgArray       The non-optional message for the exception
+        * @param       $messageArray   The non-optional message for the exception
         * @param       $code           An optional code for better debugging
         * @return      void
         */
-       public function __construct (array $msgArray, $code = 0) {
+       public function __construct (array $messageArray, $code = 0) {
                // Create the message
                $message = sprintf('[%s:%d] User email %s was not found.',
-                       $msgArray[0]->__toString(),
+                       $messageArray[0]->__toString(),
                        $this->getLine(),
-                       $msgArray[1]
+                       $messageArray[1]
                );
 
                // Make sure everything is assigned properly