Continued:
authorRoland Haeder <roland@mxchange.org>
Fri, 24 Feb 2017 19:51:13 +0000 (20:51 +0100)
committerRoland Haeder <roland@mxchange.org>
Tue, 28 Feb 2017 21:10:04 +0000 (22:10 +0100)
- fixed class names in global config.php
- added "import" for IoHandler

Signed-off-by: Roland Häder <roland@mxchange.org>
inc/config.php
inc/main/classes/class_BaseFrameworkSystem.php
inc/main/classes/file_directories/io_stream/class_FileIoStream.php
inc/main/middleware/io/class_FileIoHandler.php

index fcbcef4afe2b36aabcb84f2c2fc009221b401177..e4ce10cd572905e76d5469b81c838e791b01d410 100644 (file)
@@ -125,7 +125,7 @@ $cfg->setConfigEntry('image_template_type', 'image');
 $cfg->setConfigEntry('menu_template_type', 'menu');
 
 // CFG: OUTPUT-CLASS
-$cfg->setConfigEntry('output_class', 'WebOutput');
+$cfg->setConfigEntry('output_class', 'CoreFramework\Output\WebOutput');
 
 // CFG: LANGUAGE-SYSTEM-CLASS
 $cfg->setConfigEntry('language_system_class', 'LanguageSystem');
@@ -188,10 +188,10 @@ $cfg->setConfigEntry('database_result_class', 'CachedDatabaseResult');
 $cfg->setConfigEntry('filter_chain_class', 'FilterChain');
 
 // CFG: FILE-INPUT-CLASS
-$cfg->setConfigEntry('file_input_class', 'FileIoStream');
+$cfg->setConfigEntry('file_input_class', 'CoreFramework\Stream\Filesystem\FileIoStream');
 
 // CFG: FILE-OUTPUT-CLASS
-$cfg->setConfigEntry('file_output_class', 'FileIoStream');
+$cfg->setConfigEntry('file_output_class', 'CoreFramework\Stream\Filesystem\FileIoStream');
 
 // CFG: EMAIL-VALIDATOR-FILTER
 $cfg->setConfigEntry('email_validator_filter', 'EmailValidatorFilter');
index cd74ad32947274649eda8ba8c6fbc530f2a28b1f..7cd7419b9338f19c33b7df389de080070a4f0a0c 100644 (file)
@@ -7,6 +7,7 @@ use CoreFramework\Configuration\FrameworkConfiguration;
 use CoreFramework\Factory\ObjectFactory;
 use CoreFramework\Generic\FrameworkInterface;
 use CoreFramework\Generic\NullPointerException;
+use CoreFramework\Handler\Stream\IoHandler;
 use CoreFramework\Loader\ClassLoader;
 use CoreFramework\Manager\ManageableApplication;
 use CoreFramework\Middleware\Debug\DebugMiddleware;
index 181cc866e3586b59cc8319d53e70c2e54fa6f32d..827bd9d80a31370570ca62cc3b5f6a77c6bcb36c 100644 (file)
@@ -63,7 +63,7 @@ class FileIoStream extends BaseFrameworkSystem implements FileInputStreamer, Fil
         * Create a file IO stream. This is a class for performing all actions
         * on files like creating, deleting and loading them.
         *
-        * @return      $ioInstance     An instance of FileIoStream
+        * @return      $ioInstance     An instance of a FileIoStream class
         */
        public static final function createFileIoStream () {
                // Create new instance
index 75ac890554d5c356e528b04a4d26081a2b04e82f..888ae282590b3d576b0bd7dfe00093cb2a71982f 100644 (file)
@@ -5,6 +5,7 @@ namespace CoreFramework\Handler\Filesystem;
 // Import framework stuff
 use CoreFramework\Factory\ObjectFactory;
 use CoreFramework\Generic\FrameworkInterface;
+use CoreFramework\Handler\Stream\IoHandler;
 use CoreFramework\Middleware\BaseMiddleware;
 use CoreFramework\Stream\Filesystem\FileInputStreamer;
 use CoreFramework\Stream\Filesystem\FileOutputStreamer;