Continued:
authorRoland Haeder <roland@mxchange.org>
Thu, 23 Feb 2017 20:10:26 +0000 (21:10 +0100)
committerRoland Haeder <roland@mxchange.org>
Tue, 28 Feb 2017 21:10:04 +0000 (22:10 +0100)
- added "import" for BaseOutput, BaseDebugOutput and Debugger

Signed-off-by: Roland Häder <roland@mxchange.org>
inc/config.php
inc/main/classes/file_directories/text/output/class_BaseOutputTextFile.php
inc/main/classes/output/console/class_ConsoleOutput.php
inc/main/classes/output/debug/class_BaseDebugOutput.php
inc/main/classes/output/debug/console/class_DebugConsoleOutput.php
inc/main/classes/output/debug/error/class_DebugErrorLogOutput.php
inc/main/classes/output/debug/web/class_DebugWebOutput.php
inc/main/classes/output/web/class_WebOutput.php

index 6ea2a793473a4cfc306444c6c6a16d4bbd8d0fdc..bb9750aac4eaa37d4f507a830f3709b1bb47d6fc 100644 (file)
@@ -101,7 +101,7 @@ $cfg->setConfigEntry('deco_xml_rewriter_template_class', 'XmlRewriterTemplateDec
 $cfg->setConfigEntry('debug_html_class', 'DebugWebOutput');
 
 // CFG: DEBUG-CONSOLE-CLASS
-$cfg->setConfigEntry('debug_console_class', 'DebugConsoleOutput');
+$cfg->setConfigEntry('debug_console_class', 'CoreFramework\Debug\Output\DebugConsoleOutput');
 
 // CFG: DEFAULT-LANGUAGE
 $cfg->setConfigEntry('default_lang', 'de'); // A two-char language string: de for german, en for english and so on
index ea8f36823485d1df2b03deb3342c11855ae07c96..5e988f9a868d60d834eb6cd259e52d70a32e43af 100644 (file)
@@ -4,6 +4,7 @@ namespace CoreFramework\Filesystem\Text;
 
 // Import framework stuff
 use CoreFramework\Factory\ObjectFactory;
+use CoreFramework\Output\BaseOutput;
 
 /**
  * A general text file class
index f0c94c83c4994b035dde5ff70c853feb1a1ef4ec..c35d2f58951b89850ab00f76ec68a1159b55a62f 100644 (file)
@@ -4,6 +4,7 @@ namespace CoreFramework\Output;
 
 // Import framework stuff
 use CoreFramework\Configuration\FrameworkConfiguration;
+use CoreFramework\Output\BaseOutput;
 
 /**
  * This class simply puts text without any HTML code out. This class is suiable
index 7643d51dcc3f9629a2f39bc87506a5c97592474f..5c2083abe105fa6fcd8c2dcccfacbaa9c3c2c7cd 100644 (file)
@@ -2,6 +2,9 @@
 // Own namespace
 namespace CoreFramework\Output\Debug;
 
+// Import framework stuff
+use CoreFramework\Output\BaseOutput;
+
 /**
  * Generic debug output class
  *
index ae7cf072f8a64fcf7b9bd7fd6c36e7a103c47618..20c36dc8677823ba08d7ea2043a9fac642e67c9d 100644 (file)
@@ -3,6 +3,8 @@
 namespace CoreFramework\Debug\Output;
 
 // Import framework stuff
+use CoreFramework\Debug\Debugger;
+use CoreFramework\Output\Debug\BaseDebugOutput;
 use CoreFramework\Registry\Registerable;
 
 /**
index bf02a3186a1bc54de1901d51bd8b2c17a272091d..f85adbbc92441209a65b1f62299bf1da8739d58d 100644 (file)
@@ -2,6 +2,10 @@
 // Own namespace
 namespace CoreFramework\Output\Debug;
 
+// Import framework stuff
+use CoreFramework\Debug\Debugger;
+use CoreFramework\Output\Debug\BaseDebugOutput;
+
 /**
  * A debug output class for PHP's error_log() command
  *
index e34ec9059b35159d17e56afe011a1e88e5eb3230..f775a4c991601b0ce662cbe6481f61ee983c2002 100644 (file)
@@ -2,6 +2,10 @@
 // Own namespace
 namespace CoreFramework\Output\Debug;
 
+// Import framework stuff
+use CoreFramework\Debug\Debugger;
+use CoreFramework\Output\Debug\BaseDebugOutput;
+
 /**
  * A debug output class for the web browser
  *
index 03fe275f01d375262cc80d6a7d8147a5bd711e8e..08120e3c516adb19271828c9baada567b7a8a3e4 100644 (file)
@@ -4,6 +4,7 @@ namespace CoreFramework\Output;
 
 // Import framework stuff
 use CoreFramework\Manager\ManageableApplication;
+use CoreFramework\Output\BaseOutput;
 use CoreFramework\Registry\Registerable;
 
 /**