Continued:
[core.git] / framework / main / exceptions / state / class_UnresolveableStateException.php
index 36b3c0a393ac6c78e4eebf8d9c91a6f6285cc41e..409cda27188024ee9c329a525ea1724ec172d285 100644 (file)
@@ -10,7 +10,7 @@ use Org\Mxchange\CoreFramework\Generic\FrameworkException;
  *
  * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2023 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.shipsimu.org
  *
@@ -31,21 +31,21 @@ class UnresolveableStateException extends FrameworkException {
        /**
         * The super constructor for all exceptions
         *
-        * @param       $msgArray       An array with message parts
+        * @param       $messageArray   An array with message parts
         * @param       $code           An optional code for better debugging
         * @return      void
         */
-       public function __construct (array $msgArray, $code) {
+       public function __construct (array $messageArray, int $code) {
                // Prepare the message
                $message = sprintf('[%s:%d] Cannot resolve state <span class="exception_reason">%s (class name: %s)</span>.',
-                       $msgArray[0]->__toString(),
+                       $messageArray[0]->__toString(),
                        $this->getLine(),
-                       $msgArray[1],
-                       $msgArray[0]->getClassName()
+                       $messageArray[1],
+                       $messageArray[0]->getClassName()
                );
 
                // Set extra data
-               $this->setExtraData($msgArray[0]->getClassName() . ':' . $this->getLine());
+               $this->setExtraData($messageArray[0]->getClassName() . ':' . $this->getLine());
 
                // Call parent contructor with message
                parent::__construct($message, $code);