X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=framework%2Fmain%2Fexceptions%2Fcontroller%2Fclass_InvalidControllerException.php;h=f64f2879edbbca17425492492a11421f4412a2ac;hb=498e6b065ce47804bff4e1073592a2cc8e28f8ef;hp=aacc2e248da80f68541b4db4218497ad3c2184d5;hpb=b002c5909aa0f781505dde5414964b0f014cde01;p=core.git diff --git a/framework/main/exceptions/controller/class_InvalidControllerException.php b/framework/main/exceptions/controller/class_InvalidControllerException.php index aacc2e24..f64f2879 100644 --- a/framework/main/exceptions/controller/class_InvalidControllerException.php +++ b/framework/main/exceptions/controller/class_InvalidControllerException.php @@ -10,7 +10,7 @@ use Org\Mxchange\CoreFramework\Generic\FrameworkException; * * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2020 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 %s (class name: %s).', - $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);