]> git.mxchange.org Git - core.git/blobdiff - framework/main/exceptions/user/class_UserNoGuestException.php
Continued:
[core.git] / framework / main / exceptions / user / class_UserNoGuestException.php
index 689b0c78776bbad11623749cd68ed7d5edc103ce..7f1f5121c1f50805f128f9c1337721a8ef11dc7f 100644 (file)
@@ -33,17 +33,17 @@ class UserNoGuestException 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 %s is not a guest account: %s',
-                       $msgArray[0]->__toString(),
+                       $messageArray[0]->__toString(),
                        $this->getLine(),
-                       $msgArray[1],
-                       $msgArray[0]->getField(UserDatabaseWrapper::DB_COLUMN_USER_STATUS)
+                       $messageArray[1],
+                       $messageArray[0]->getField(UserDatabaseWrapper::DB_COLUMN_USER_STATUS)
                );
 
                // Make sure everything is assigned properly