Continued:
[core.git] / framework / main / exceptions / actions / class_InvalidActionException.php
index 8b709c6f7a348bf687f256f2f3f794846921aad3..4b85db121347e29e0b8666c4b0da69fa040f9c22 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,17 +31,17 @@ class InvalidActionException 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 action <span class="exception_reason">%s (%s)</span>.',
-                       $msgArray[0]->__toString(),
+                       $messageArray[0]->__toString(),
                        $this->getLine(),
-                       $msgArray[1],
-                       $msgArray[0]->getClassName()
+                       $messageArray[1],
+                       $messageArray[0]->getClassName()
                );
 
                // Call parent contructor with message