]> git.mxchange.org Git - core.git/blobdiff - framework/main/exceptions/main/class_NoClassException.php
Continued:
[core.git] / framework / main / exceptions / main / class_NoClassException.php
index c993e96d9d26c2edb64cb94638ba5d1fd140699b..0b768a939af7766d3a11ac7ab818e5e4e0a7591b 100644 (file)
@@ -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);