]> git.mxchange.org Git - core.git/blobdiff - framework/main/exceptions/user/class_UserPasswordMismatchException.php
Continued:
[core.git] / framework / main / exceptions / user / class_UserPasswordMismatchException.php
index 775d45df7f3c7d5cc6b86854f75cc79198b92a1f..62b787d08536e95cfe7606ffa7bede7d0d71ff5a 100644 (file)
@@ -31,16 +31,16 @@ class UserPasswordMismatchException 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] Supplied password for user %s did not match with stored password.',
-                       $msgArray[0]->__toString(),
+                       $messageArray[0]->__toString(),
                        $this->getLine(),
-                       $msgArray[1]->getUserName()
+                       $messageArray[1]->getUserName()
                );
 
                // Make sure everything is assigned properly