Continued:
[core.git] / framework / main / exceptions / main / class_UnsupportedOperationException.php
index a27c076e245d35cf870296a5634e925b98c61c25..8b8f3d37b4b7ac614b41b4cdae99cf7d84be144b 100644 (file)
@@ -12,7 +12,7 @@ use Org\Mxchange\CoreFramework\Generic\FrameworkInterface;
  *
  * @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
  *
@@ -37,7 +37,7 @@ class UnsupportedOperationException extends FrameworkException {
         * @param       $code                   Code number for the exception
         * @return      void
         */
-       public function __construct (array $classArray, $code) {
+       public function __construct (array $classArray, int $code) {
                // Init extra class name
                $extraClassName = '';
 
@@ -45,7 +45,7 @@ class UnsupportedOperationException extends FrameworkException {
                if ((isset($classArray[2])) && ($classArray[2] instanceof FrameworkInterface)) {
                        // Get the class name
                        $extraClassName = $classArray[2]->__toString();
-               } // END - if
+               }
 
                // Add a message around the missing class
                $message = sprintf('[%s:%d] Method <u>%s()</u> is unsupported or should not be called. extraInstance=%s',