Continued:
[core.git] / framework / main / exceptions / controller / class_InvalidControllerException.php
index aacc2e248da80f68541b4db4218497ad3c2184d5..2610e5a5db91aa45643c3832b195b69a84435c18 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 InvalidControllerException 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 controller <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);