X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=framework%2Fmain%2Fexceptions%2Fmain%2Fclass_NoClassException.php;h=f78ebfda9a09d086b74403acb79fd962e2a306af;hb=027c5659e968546a21be37e70d700c7e14cba993;hp=292d9f7538a18e0dddbb236a887e6d11248d8f6c;hpb=78a010fef84895720e796842208f01dfb619c332;p=core.git diff --git a/framework/main/exceptions/main/class_NoClassException.php b/framework/main/exceptions/main/class_NoClassException.php index 292d9f75..f78ebfda 100644 --- a/framework/main/exceptions/main/class_NoClassException.php +++ b/framework/main/exceptions/main/class_NoClassException.php @@ -1,16 +1,16 @@ * @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,20 +31,20 @@ class NoClassException extends FrameworkException { /** * The constructor * - * @param $msgArray Message from the exception + * @param $messageArray Message from the exception * @param $code Code number for the exception * @return void */ - public function __construct (array $msgArray, $code) { + public function __construct (array $messageArray, int $code) { // Add a message around the missing class $message = sprintf('[%s:%d] Class %s not found.', - $msgArray[0]->__toString(), + $messageArray[0]->__toString(), $this->getLine(), - $msgArray[1] + $messageArray[1] ); // Set extra data - $this->setExtraData($msgArray[1]); + $this->setExtraData($messageArray[1]); // Call parent constructor parent::__construct($message, $code);