]> git.mxchange.org Git - core.git/blobdiff - framework/main/classes/output/debug/class_BaseDebugOutput.php
Continued:
[core.git] / framework / main / classes / output / debug / class_BaseDebugOutput.php
index 5c2083abe105fa6fcd8c2dcccfacbaa9c3c2c7cd..efc5788f69cb9666c4f3350864ba956285542559 100644 (file)
@@ -1,16 +1,16 @@
 <?php
 // Own namespace
-namespace CoreFramework\Output\Debug;
+namespace Org\Mxchange\CoreFramework\Output\Debug;
 
 // Import framework stuff
-use CoreFramework\Output\BaseOutput;
+use Org\Mxchange\CoreFramework\Output\BaseOutput;
 
 /**
  * Generic debug output class
  *
  * @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
  *
@@ -27,11 +27,11 @@ use CoreFramework\Output\BaseOutput;
  * You should have received a copy of the GNU General Public License
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
-class BaseDebugOutput extends BaseOutput {
+abstract class BaseDebugOutput extends BaseOutput {
        /**
         * Class name for this output class is being used for logging
         */
-       private $loggerClassName = FALSE;
+       private $loggerClassName = false;
 
        /**
         * Protected constructor
@@ -39,7 +39,7 @@ class BaseDebugOutput extends BaseOutput {
         * @param       $className      Name of the class
         * @return      void
         */
-       protected function __construct ($className) {
+       protected function __construct (string $className) {
                // Call parent constructor
                parent::__construct($className);
        }
@@ -50,7 +50,7 @@ class BaseDebugOutput extends BaseOutput {
         * @param       $loggerClassName        Class name this output class is being used for logging
         * @return      void
         */
-       public final function setLoggerClassName ($loggerClassName) {
+       public final function setLoggerClassName (string $loggerClassName) {
                $this->loggerClassName = $loggerClassName;
        }