]> git.mxchange.org Git - core.git/blobdiff - framework/main/exceptions/main/class_InvalidCommandException.php
Continued:
[core.git] / framework / main / exceptions / main / class_InvalidCommandException.php
index 90136e21efea973cdef708e9db7b99d50639f864..bf26dcb52c1c9e507e622549664f0897faeb952c 100644 (file)
@@ -35,17 +35,17 @@ class InvalidCommandException extends FrameworkException {
         * @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] Invalid command <span class="exception_reason">%s (class %s)</span> detected.',
-                       $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 constructor
                parent::__construct($message, $code);