]> git.mxchange.org Git - core.git/blobdiff - framework/main/exceptions/user/class_UsernameMissingException.php
Continued:
[core.git] / framework / main / exceptions / user / class_UsernameMissingException.php
index 56cdfd449d4fae61302af9517064d9812adb0590..aad7c357e26fd199fd8c45c2a15a247644ba9c82 100644 (file)
@@ -31,16 +31,16 @@ class UsernameMissingException 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] Username %s was not found.',
-                       $msgArray[0]->__toString(),
+                       $messageArray[0]->__toString(),
                        $this->getLine(),
-                       $msgArray[1]
+                       $messageArray[1]
                );
 
                // Make sure everything is assigned properly