From 7976764245f66fbb7a3c1f51a775ed917986d460 Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Sat, 25 Feb 2017 15:11:49 +0100 Subject: [PATCH 1/1] Continued: - added "import" for Commandable - added "import" for Controller - added "import" for Requestable/Responseable - added "import" for CommandResolver/Resolver - added missing namespace in config.php MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- .../commands/console/class_TestsConsoleMainCommand.php | 5 +++++ .../console/class_TestsConsoleDefaultNewsController.php | 1 + .../controller/class_TestsConsoleControllerResolver.php | 1 + inc/config.php | 2 +- .../classes/actions/html/class_HtmlLoginProfileAction.php | 1 + inc/main/classes/class_BaseFrameworkSystem.php | 2 ++ .../classes/commands/console/class_ConsoleFuseCommand.php | 3 +++ inc/main/classes/commands/html/class_HtmlConfirmCommand.php | 3 +++ inc/main/classes/commands/html/class_HtmlDoFormCommand.php | 3 +++ inc/main/classes/commands/html/class_HtmlHomeCommand.php | 3 +++ .../classes/commands/html/class_HtmlLoginAreaCommand.php | 3 +++ inc/main/classes/commands/html/class_HtmlLoginCommand.php | 3 +++ .../classes/commands/html/class_HtmlLoginFailedCommand.php | 3 +++ inc/main/classes/commands/html/class_HtmlLogoutCommand.php | 3 +++ .../classes/commands/html/class_HtmlLogoutDoneCommand.php | 3 +++ inc/main/classes/commands/html/class_HtmlProblemCommand.php | 3 +++ inc/main/classes/commands/html/class_HtmlRegisterCommand.php | 3 +++ .../classes/commands/html/class_HtmlResendLinkCommand.php | 3 +++ inc/main/classes/commands/html/class_HtmlStatusCommand.php | 3 +++ .../classes/commands/image/class_ImageCodeCaptchaCommand.php | 3 +++ .../controller/console/class_ConsoleDefaultController.php | 1 + .../console/class_ConsoleDefaultNewsController.php | 1 + .../classes/controller/html/class_HtmlConfirmController.php | 1 + .../classes/controller/html/class_HtmlDefaultController.php | 1 + .../controller/html/class_HtmlDefaultNewsController.php | 1 + .../classes/controller/html/class_HtmlLoginController.php | 1 + .../controller/html/class_HtmlLoginFailedController.php | 1 + .../classes/controller/html/class_HtmlLogoutController.php | 1 + .../controller/html/class_HtmlLogoutDoneController.php | 2 ++ .../classes/controller/html/class_HtmlProblemController.php | 1 + .../classes/controller/html/class_HtmlRegisterController.php | 2 ++ .../classes/controller/html/class_HtmlStatusController.php | 1 + .../controller/html/form/class_HtmlDoFormController.php | 1 + .../controller/html/login/class_HtmlLoginAreaController.php | 1 + .../image/captcha/class_ImageCodeCaptchaController.php | 1 + .../controller/image/class_ImageDefaultController.php | 1 + inc/main/classes/filter/class_FilterChain.php | 2 +- .../command/console/class_ConsoleCommandResolver.php | 1 + .../resolver/command/html/class_HtmlCommandResolver.php | 1 + .../resolver/command/image/class_ImageCommandResolver.php | 1 + inc/main/interfaces/actions/commands/class_Commandable.php | 1 + 41 files changed, 76 insertions(+), 2 deletions(-) diff --git a/application/tests/classes/commands/console/class_TestsConsoleMainCommand.php b/application/tests/classes/commands/console/class_TestsConsoleMainCommand.php index 81a2a47e..f6de46d8 100644 --- a/application/tests/classes/commands/console/class_TestsConsoleMainCommand.php +++ b/application/tests/classes/commands/console/class_TestsConsoleMainCommand.php @@ -4,6 +4,11 @@ namespace CoreFramework\Tests\Command; // Import framework stuff use CoreFramework\Command\BaseCommand; +use CoreFramework\Command\Commandable; +use CoreFranework\Controller\Controller; +use CoreFramework\Request\Requestable; +use CoreFramework\Resolver\Command\CommandResolver; +use CoreFramework\Response\Responseable; /** * A command for the 'main' routine diff --git a/application/tests/classes/controller/console/class_TestsConsoleDefaultNewsController.php b/application/tests/classes/controller/console/class_TestsConsoleDefaultNewsController.php index 83e9fafd..f5639f64 100644 --- a/application/tests/classes/controller/console/class_TestsConsoleDefaultNewsController.php +++ b/application/tests/classes/controller/console/class_TestsConsoleDefaultNewsController.php @@ -6,6 +6,7 @@ namespace CoreFramework\Tests\Controller; use CoreFramework\Controller\BaseController; use CoreFramework\Controller\Controller; use CoreFramework\Request\Requestable; +use CoreFramework\Resolver\Command\CommandResolver; use CoreFramework\Response\Responseable; /** diff --git a/application/tests/classes/resolver/controller/class_TestsConsoleControllerResolver.php b/application/tests/classes/resolver/controller/class_TestsConsoleControllerResolver.php index ad250cab..1b35dcec 100644 --- a/application/tests/classes/resolver/controller/class_TestsConsoleControllerResolver.php +++ b/application/tests/classes/resolver/controller/class_TestsConsoleControllerResolver.php @@ -4,6 +4,7 @@ namespace CoreFramework\Tests\Resolver\Controller; // Import framework stuff use CoreFramework\Controller\BaseController; +use CoreFramework\Controller\Controller; use CoreFramework\Manager\ManageableApplication; use CoreFramework\Resolver\Controller\BaseControllerResolver; use CoreFramework\Resolver\Controller\ControllerResolver; diff --git a/inc/config.php b/inc/config.php index e4ce10cd..14518b17 100644 --- a/inc/config.php +++ b/inc/config.php @@ -185,7 +185,7 @@ $cfg->setConfigEntry('file_io_class', 'CoreFramework\Handler\Filesystem\FileIoHa $cfg->setConfigEntry('database_result_class', 'CachedDatabaseResult'); // CFG: FILTER-CHAIN-CLASS -$cfg->setConfigEntry('filter_chain_class', 'FilterChain'); +$cfg->setConfigEntry('filter_chain_class', 'CoreFramework\Chain\Filter\FilterChain'); // CFG: FILE-INPUT-CLASS $cfg->setConfigEntry('file_input_class', 'CoreFramework\Stream\Filesystem\FileIoStream'); diff --git a/inc/main/classes/actions/html/class_HtmlLoginProfileAction.php b/inc/main/classes/actions/html/class_HtmlLoginProfileAction.php index 9875268b..f134e09f 100644 --- a/inc/main/classes/actions/html/class_HtmlLoginProfileAction.php +++ b/inc/main/classes/actions/html/class_HtmlLoginProfileAction.php @@ -4,6 +4,7 @@ namespace CoreFramework\Action\Login; // Import framework stuff use CoreFramework\Action\PerformableAction; +use CoreFranework\Controller\Controller; use CoreFramework\Factory\ObjectFactory; use CoreFramework\Registry\Registerable; use CoreFramework\Request\Requestable; diff --git a/inc/main/classes/class_BaseFrameworkSystem.php b/inc/main/classes/class_BaseFrameworkSystem.php index ffae8184..ec28c77f 100644 --- a/inc/main/classes/class_BaseFrameworkSystem.php +++ b/inc/main/classes/class_BaseFrameworkSystem.php @@ -4,6 +4,7 @@ namespace CoreFramework\Object; // Import framework stuff use CoreFramework\Configuration\FrameworkConfiguration; +use CoreFranework\Controller\Controller; use CoreFramework\Factory\ObjectFactory; use CoreFramework\Generic\FrameworkInterface; use CoreFramework\Generic\NullPointerException; @@ -14,6 +15,7 @@ use CoreFramework\Middleware\Debug\DebugMiddleware; use CoreFramework\Registry\Register; use CoreFramework\Registry\Registry; use CoreFramework\Request\Requestable; +use CoreFramework\Resolver\Resolver; use CoreFramework\Response\Responseable; use CoreFramework\Stream\Output\OutputStreamer; use CoreFramework\Template\CompileableTemplate; diff --git a/inc/main/classes/commands/console/class_ConsoleFuseCommand.php b/inc/main/classes/commands/console/class_ConsoleFuseCommand.php index d36f486a..9ba3e02c 100644 --- a/inc/main/classes/commands/console/class_ConsoleFuseCommand.php +++ b/inc/main/classes/commands/console/class_ConsoleFuseCommand.php @@ -4,7 +4,10 @@ namespace CoreFramework\Command\Fuse; // Import framework stuff use CoreFramework\Command\BaseCommand; +use CoreFramework\Command\Commandable; +use CoreFranework\Controller\Controller; use CoreFramework\Request\Requestable; +use CoreFramework\Resolver\Command\CommandResolver; use CoreFramework\Response\Responseable; /** diff --git a/inc/main/classes/commands/html/class_HtmlConfirmCommand.php b/inc/main/classes/commands/html/class_HtmlConfirmCommand.php index 526540c7..4057c5bc 100644 --- a/inc/main/classes/commands/html/class_HtmlConfirmCommand.php +++ b/inc/main/classes/commands/html/class_HtmlConfirmCommand.php @@ -4,10 +4,13 @@ namespace CoreFramework\Command\Guest; // Import framework stuff use CoreFramework\Command\BaseCommand; +use CoreFramework\Command\Commandable; +use CoreFranework\Controller\Controller; use CoreFramework\Factory\ObjectFactory; use CoreFramework\Generic\NullPointerException; use CoreFramework\Registry\Registry; use CoreFramework\Request\Requestable; +use CoreFramework\Resolver\Command\CommandResolver; use CoreFramework\Response\Responseable; /** diff --git a/inc/main/classes/commands/html/class_HtmlDoFormCommand.php b/inc/main/classes/commands/html/class_HtmlDoFormCommand.php index f1c19304..a23dc9b0 100644 --- a/inc/main/classes/commands/html/class_HtmlDoFormCommand.php +++ b/inc/main/classes/commands/html/class_HtmlDoFormCommand.php @@ -4,7 +4,10 @@ namespace CoreFramework\Command\Form; // Import framework stuff use CoreFramework\Command\BaseCommand; +use CoreFramework\Command\Commandable; +use CoreFranework\Controller\Controller; use CoreFramework\Request\Requestable; +use CoreFramework\Resolver\Command\CommandResolver; use CoreFramework\Response\Responseable; /** diff --git a/inc/main/classes/commands/html/class_HtmlHomeCommand.php b/inc/main/classes/commands/html/class_HtmlHomeCommand.php index 50350bb3..1029e649 100644 --- a/inc/main/classes/commands/html/class_HtmlHomeCommand.php +++ b/inc/main/classes/commands/html/class_HtmlHomeCommand.php @@ -4,8 +4,11 @@ namespace CoreFramework\Command\Guest; // Import framework stuff use CoreFramework\Command\BaseCommand; +use CoreFramework\Command\Commandable; +use CoreFranework\Controller\Controller; use CoreFramework\Factory\ObjectFactory; use CoreFramework\Request\Requestable; +use CoreFramework\Resolver\Command\CommandResolver; use CoreFramework\Response\Responseable; /** diff --git a/inc/main/classes/commands/html/class_HtmlLoginAreaCommand.php b/inc/main/classes/commands/html/class_HtmlLoginAreaCommand.php index 9bc563c0..a22b6a32 100644 --- a/inc/main/classes/commands/html/class_HtmlLoginAreaCommand.php +++ b/inc/main/classes/commands/html/class_HtmlLoginAreaCommand.php @@ -5,9 +5,12 @@ namespace CoreFramework\Command\Login; // Import framework stuff use CoreFramework\Action\PerformableAction; use CoreFramework\Command\BaseCommand; +use CoreFramework\Command\Commandable; +use CoreFranework\Controller\Controller; use CoreFramework\Factory\ObjectFactory; use CoreFramework\Registry\Registry; use CoreFramework\Request\Requestable; +use CoreFramework\Resolver\Command\CommandResolver; use CoreFramework\Response\Responseable; /** diff --git a/inc/main/classes/commands/html/class_HtmlLoginCommand.php b/inc/main/classes/commands/html/class_HtmlLoginCommand.php index 70732468..d7e942a9 100644 --- a/inc/main/classes/commands/html/class_HtmlLoginCommand.php +++ b/inc/main/classes/commands/html/class_HtmlLoginCommand.php @@ -4,10 +4,13 @@ namespace CoreFramework\Command\Login; // Import framework stuff use CoreFramework\Command\BaseCommand; +use CoreFramework\Command\Commandable; +use CoreFranework\Controller\Controller; use CoreFramework\Factory\ObjectFactory; use CoreFramework\Registry\Registerable; use CoreFramework\Registry\Registry; use CoreFramework\Request\Requestable; +use CoreFramework\Resolver\Command\CommandResolver; use CoreFramework\Response\Responseable; /** diff --git a/inc/main/classes/commands/html/class_HtmlLoginFailedCommand.php b/inc/main/classes/commands/html/class_HtmlLoginFailedCommand.php index 7188904c..551534eb 100644 --- a/inc/main/classes/commands/html/class_HtmlLoginFailedCommand.php +++ b/inc/main/classes/commands/html/class_HtmlLoginFailedCommand.php @@ -4,8 +4,11 @@ namespace CoreFramework\Command\Failed; // Import framework stuff use CoreFramework\Command\BaseCommand; +use CoreFramework\Command\Commandable; +use CoreFranework\Controller\Controller; use CoreFramework\Factory\ObjectFactory; use CoreFramework\Request\Requestable; +use CoreFramework\Resolver\Command\CommandResolver; use CoreFramework\Response\Responseable; /** diff --git a/inc/main/classes/commands/html/class_HtmlLogoutCommand.php b/inc/main/classes/commands/html/class_HtmlLogoutCommand.php index 20111df2..35991a2a 100644 --- a/inc/main/classes/commands/html/class_HtmlLogoutCommand.php +++ b/inc/main/classes/commands/html/class_HtmlLogoutCommand.php @@ -4,8 +4,11 @@ namespace CoreFramework\Command\Login; // Import framework stuff use CoreFramework\Command\BaseCommand; +use CoreFramework\Command\Commandable; +use CoreFranework\Controller\Controller; use CoreFramework\Factory\ObjectFactory; use CoreFramework\Request\Requestable; +use CoreFramework\Resolver\Command\CommandResolver; use CoreFramework\Response\Responseable; /** diff --git a/inc/main/classes/commands/html/class_HtmlLogoutDoneCommand.php b/inc/main/classes/commands/html/class_HtmlLogoutDoneCommand.php index fa669104..f418b8e3 100644 --- a/inc/main/classes/commands/html/class_HtmlLogoutDoneCommand.php +++ b/inc/main/classes/commands/html/class_HtmlLogoutDoneCommand.php @@ -4,8 +4,11 @@ namespace CoreFramework\Command\Logout; // Import framework stuff use CoreFramework\Command\BaseCommand; +use CoreFramework\Command\Commandable; +use CoreFranework\Controller\Controller; use CoreFramework\Factory\ObjectFactory; use CoreFramework\Request\Requestable; +use CoreFramework\Resolver\Command\CommandResolver; use CoreFramework\Response\Responseable; /** diff --git a/inc/main/classes/commands/html/class_HtmlProblemCommand.php b/inc/main/classes/commands/html/class_HtmlProblemCommand.php index a796c017..617b744d 100644 --- a/inc/main/classes/commands/html/class_HtmlProblemCommand.php +++ b/inc/main/classes/commands/html/class_HtmlProblemCommand.php @@ -4,7 +4,10 @@ namespace CoreFramework\Command\Failed; // Import framework stuff use CoreFramework\Command\BaseCommand; +use CoreFramework\Command\Commandable; +use CoreFranework\Controller\Controller; use CoreFramework\Request\Requestable; +use CoreFramework\Resolver\Command\CommandResolver; use CoreFramework\Response\Responseable; /** diff --git a/inc/main/classes/commands/html/class_HtmlRegisterCommand.php b/inc/main/classes/commands/html/class_HtmlRegisterCommand.php index aaf5c4e5..a47b2a8f 100644 --- a/inc/main/classes/commands/html/class_HtmlRegisterCommand.php +++ b/inc/main/classes/commands/html/class_HtmlRegisterCommand.php @@ -4,10 +4,13 @@ namespace CoreFramework\Command\Register; // Import framework stuff use CoreFramework\Command\BaseCommand; +use CoreFramework\Command\Commandable; +use CoreFranework\Controller\Controller; use CoreFramework\Factory\ObjectFactory; use CoreFramework\Registry\Registerable; use CoreFramework\Registry\Registry; use CoreFramework\Request\Requestable; +use CoreFramework\Resolver\Command\CommandResolver; use CoreFramework\Response\Responseable; /** diff --git a/inc/main/classes/commands/html/class_HtmlResendLinkCommand.php b/inc/main/classes/commands/html/class_HtmlResendLinkCommand.php index a8b1fc72..d4e25cd4 100644 --- a/inc/main/classes/commands/html/class_HtmlResendLinkCommand.php +++ b/inc/main/classes/commands/html/class_HtmlResendLinkCommand.php @@ -4,9 +4,12 @@ namespace CoreFramework\Command\Guest; // Import framework stuff use CoreFramework\Command\BaseCommand; +use CoreFramework\Command\Commandable; +use CoreFranework\Controller\Controller; use CoreFramework\Factory\ObjectFactory; use CoreFramework\Registry\Registry; use CoreFramework\Request\Requestable; +use CoreFramework\Resolver\Command\CommandResolver; use CoreFramework\Response\Responseable; /** diff --git a/inc/main/classes/commands/html/class_HtmlStatusCommand.php b/inc/main/classes/commands/html/class_HtmlStatusCommand.php index 938e3cc9..d208f214 100644 --- a/inc/main/classes/commands/html/class_HtmlStatusCommand.php +++ b/inc/main/classes/commands/html/class_HtmlStatusCommand.php @@ -4,8 +4,11 @@ namespace CoreFramework\Command\Status; // Import framework stuff use CoreFramework\Command\BaseCommand; +use CoreFramework\Command\Commandable; +use CoreFranework\Controller\Controller; use CoreFramework\Factory\ObjectFactory; use CoreFramework\Request\Requestable; +use CoreFramework\Resolver\Command\CommandResolver; use CoreFramework\Response\Responseable; /** diff --git a/inc/main/classes/commands/image/class_ImageCodeCaptchaCommand.php b/inc/main/classes/commands/image/class_ImageCodeCaptchaCommand.php index 14345a55..e9c3226b 100644 --- a/inc/main/classes/commands/image/class_ImageCodeCaptchaCommand.php +++ b/inc/main/classes/commands/image/class_ImageCodeCaptchaCommand.php @@ -4,7 +4,10 @@ namespace CoreFramework\Command\Captcha; // Import framework stuff use CoreFramework\Command\BaseCommand; +use CoreFramework\Command\Commandable; +use CoreFranework\Controller\Controller; use CoreFramework\Request\Requestable; +use CoreFramework\Resolver\Command\CommandResolver; use CoreFramework\Response\Responseable; /** diff --git a/inc/main/classes/controller/console/class_ConsoleDefaultController.php b/inc/main/classes/controller/console/class_ConsoleDefaultController.php index cd4afa36..a8016859 100644 --- a/inc/main/classes/controller/console/class_ConsoleDefaultController.php +++ b/inc/main/classes/controller/console/class_ConsoleDefaultController.php @@ -5,6 +5,7 @@ namespace CoreFramework\Controller\Default; // Import framework stuff use CoreFramework\Controller\BaseController; use CoreFramework\Request\Requestable; +use CoreFramework\Resolver\Command\CommandResolver; use CoreFramework\Response\Responseable; /** diff --git a/inc/main/classes/controller/console/class_ConsoleDefaultNewsController.php b/inc/main/classes/controller/console/class_ConsoleDefaultNewsController.php index 8625a332..c8655fd3 100644 --- a/inc/main/classes/controller/console/class_ConsoleDefaultNewsController.php +++ b/inc/main/classes/controller/console/class_ConsoleDefaultNewsController.php @@ -7,6 +7,7 @@ use CoreFramework\Controller\BaseController; use CoreFramework\Controller\Controller; use CoreFramework\Factory\ObjectFactory; use CoreFramework\Request\Requestable; +use CoreFramework\Resolver\Command\CommandResolver; use CoreFramework\Response\Responseable; /** diff --git a/inc/main/classes/controller/html/class_HtmlConfirmController.php b/inc/main/classes/controller/html/class_HtmlConfirmController.php index 0982c528..c332342e 100644 --- a/inc/main/classes/controller/html/class_HtmlConfirmController.php +++ b/inc/main/classes/controller/html/class_HtmlConfirmController.php @@ -6,6 +6,7 @@ namespace CoreFramework\Controller\Confirm; use CoreFramework\Controller\BaseController; use CoreFramework\Controller\Controller; use CoreFramework\Factory\ObjectFactory; +use CoreFramework\Resolver\Command\CommandResolver; use CoreFramework\Response\Responseable; /** diff --git a/inc/main/classes/controller/html/class_HtmlDefaultController.php b/inc/main/classes/controller/html/class_HtmlDefaultController.php index feb18d90..9ca28320 100644 --- a/inc/main/classes/controller/html/class_HtmlDefaultController.php +++ b/inc/main/classes/controller/html/class_HtmlDefaultController.php @@ -6,6 +6,7 @@ namespace CoreFramework\Controller\Default; use CoreFramework\Controller\BaseController; use CoreFramework\Controller\Controller; use CoreFramework\Request\Requestable; +use CoreFramework\Resolver\Command\CommandResolver; use CoreFramework\Response\Responseable; /** diff --git a/inc/main/classes/controller/html/class_HtmlDefaultNewsController.php b/inc/main/classes/controller/html/class_HtmlDefaultNewsController.php index 59d717fd..2c8f854a 100644 --- a/inc/main/classes/controller/html/class_HtmlDefaultNewsController.php +++ b/inc/main/classes/controller/html/class_HtmlDefaultNewsController.php @@ -6,6 +6,7 @@ namespace CoreFramework\Controller\News; use CoreFramework\Controller\BaseController; use CoreFramework\Controller\Controller; use CoreFramework\Factory\ObjectFactory; +use CoreFramework\Resolver\Command\CommandResolver; use CoreFramework\Response\Responseable; /** diff --git a/inc/main/classes/controller/html/class_HtmlLoginController.php b/inc/main/classes/controller/html/class_HtmlLoginController.php index 181f107f..166a9ed9 100644 --- a/inc/main/classes/controller/html/class_HtmlLoginController.php +++ b/inc/main/classes/controller/html/class_HtmlLoginController.php @@ -6,6 +6,7 @@ namespace CoreFramework\Controller\Login; use CoreFramework\Controller\BaseController; use CoreFramework\Controller\Controller; use CoreFramework\Request\Requestable; +use CoreFramework\Resolver\Command\CommandResolver; use CoreFramework\Response\Responseable; /** diff --git a/inc/main/classes/controller/html/class_HtmlLoginFailedController.php b/inc/main/classes/controller/html/class_HtmlLoginFailedController.php index 34b52d90..43d0596d 100644 --- a/inc/main/classes/controller/html/class_HtmlLoginFailedController.php +++ b/inc/main/classes/controller/html/class_HtmlLoginFailedController.php @@ -6,6 +6,7 @@ namespace CoreFramework\Controller\Failed; use CoreFramework\Controller\BaseController; use CoreFramework\Controller\Controller; use CoreFramework\Request\Requestable; +use CoreFramework\Resolver\Command\CommandResolver; use CoreFramework\Response\Responseable; /** diff --git a/inc/main/classes/controller/html/class_HtmlLogoutController.php b/inc/main/classes/controller/html/class_HtmlLogoutController.php index ffa9675e..ff14940e 100644 --- a/inc/main/classes/controller/html/class_HtmlLogoutController.php +++ b/inc/main/classes/controller/html/class_HtmlLogoutController.php @@ -7,6 +7,7 @@ use CoreFramework\Controller\BaseController; use CoreFramework\Controller\Controller; use CoreFramework\Factory\ObjectFactory; use CoreFramework\Request\Requestable; +use CoreFramework\Resolver\Command\CommandResolver; use CoreFramework\Response\Responseable; /** diff --git a/inc/main/classes/controller/html/class_HtmlLogoutDoneController.php b/inc/main/classes/controller/html/class_HtmlLogoutDoneController.php index 1e3a2cdd..1cd15298 100644 --- a/inc/main/classes/controller/html/class_HtmlLogoutDoneController.php +++ b/inc/main/classes/controller/html/class_HtmlLogoutDoneController.php @@ -6,6 +6,8 @@ namespace CoreFramework\Controller\Logout; use CoreFramework\Controller\BaseController; use CoreFramework\Controller\Controller; use CoreFramework\Request\Requestable; +use CoreFramework\Resolver\Command\CommandResolver; +use CoreFramework\Response\Responseable; /** * Controller for logout done page diff --git a/inc/main/classes/controller/html/class_HtmlProblemController.php b/inc/main/classes/controller/html/class_HtmlProblemController.php index 1017a104..c26865c5 100644 --- a/inc/main/classes/controller/html/class_HtmlProblemController.php +++ b/inc/main/classes/controller/html/class_HtmlProblemController.php @@ -6,6 +6,7 @@ namespace CoreFramework\Controller\Problem; use CoreFramework\Controller\BaseController; use CoreFramework\Controller\Controller; use CoreFramework\Request\Requestable; +use CoreFramework\Resolver\Command\CommandResolver; use CoreFramework\Response\Responseable; /** diff --git a/inc/main/classes/controller/html/class_HtmlRegisterController.php b/inc/main/classes/controller/html/class_HtmlRegisterController.php index e299168c..3b63a48c 100644 --- a/inc/main/classes/controller/html/class_HtmlRegisterController.php +++ b/inc/main/classes/controller/html/class_HtmlRegisterController.php @@ -5,6 +5,8 @@ namespace CoreFramework\Controller\Register; // Import framework stuff use CoreFramework\Controller\BaseController; use CoreFramework\Controller\Controller; +use CoreFramework\Request\Requestable; +use CoreFramework\Resolver\Command\CommandResolver; use CoreFramework\Response\Responseable; /** diff --git a/inc/main/classes/controller/html/class_HtmlStatusController.php b/inc/main/classes/controller/html/class_HtmlStatusController.php index 34901917..de54a85e 100644 --- a/inc/main/classes/controller/html/class_HtmlStatusController.php +++ b/inc/main/classes/controller/html/class_HtmlStatusController.php @@ -6,6 +6,7 @@ namespace CoreFramework\Controller\Status; use CoreFramework\Controller\BaseController; use CoreFramework\Controller\Controller; use CoreFramework\Request\Requestable; +use CoreFramework\Resolver\Command\CommandResolver; use CoreFramework\Response\Responseable; /** diff --git a/inc/main/classes/controller/html/form/class_HtmlDoFormController.php b/inc/main/classes/controller/html/form/class_HtmlDoFormController.php index 169f0e52..271e15da 100644 --- a/inc/main/classes/controller/html/form/class_HtmlDoFormController.php +++ b/inc/main/classes/controller/html/form/class_HtmlDoFormController.php @@ -6,6 +6,7 @@ namespace CoreFramework\Controller\Form; use CoreFramework\Controller\BaseController; use CoreFramework\Controller\Controller; use CoreFramework\Request\Requestable; +use CoreFramework\Resolver\Command\CommandResolver; use CoreFramework\Response\Responseable; /** diff --git a/inc/main/classes/controller/html/login/class_HtmlLoginAreaController.php b/inc/main/classes/controller/html/login/class_HtmlLoginAreaController.php index 251f6db3..62495503 100644 --- a/inc/main/classes/controller/html/login/class_HtmlLoginAreaController.php +++ b/inc/main/classes/controller/html/login/class_HtmlLoginAreaController.php @@ -7,6 +7,7 @@ use CoreFramework\Controller\BaseController; use CoreFramework\Controller\Controller; use CoreFramework\Factory\ObjectFactory; use CoreFramework\Request\Requestable; +use CoreFramework\Resolver\Command\CommandResolver; use CoreFramework\Response\Responseable; /** diff --git a/inc/main/classes/controller/image/captcha/class_ImageCodeCaptchaController.php b/inc/main/classes/controller/image/captcha/class_ImageCodeCaptchaController.php index 4fa888de..bbd94fc1 100644 --- a/inc/main/classes/controller/image/captcha/class_ImageCodeCaptchaController.php +++ b/inc/main/classes/controller/image/captcha/class_ImageCodeCaptchaController.php @@ -7,6 +7,7 @@ use CoreFramework\Controller\BaseController; use CoreFramework\Controller\Controller; use CoreFramework\Factory\ObjectFactory; use CoreFramework\Request\Requestable; +use CoreFramework\Resolver\Command\CommandResolver; use CoreFramework\Response\Responseable; /** diff --git a/inc/main/classes/controller/image/class_ImageDefaultController.php b/inc/main/classes/controller/image/class_ImageDefaultController.php index 953cca0e..eaa9e845 100644 --- a/inc/main/classes/controller/image/class_ImageDefaultController.php +++ b/inc/main/classes/controller/image/class_ImageDefaultController.php @@ -6,6 +6,7 @@ namespace CoreFramework\Controller\Default; use CoreFramework\Controller\BaseController; use CoreFramework\Controller\Controller; use CoreFramework\Request\Requestable; +use CoreFramework\Resolver\Command\CommandResolver; use CoreFramework\Response\Responseable; /** diff --git a/inc/main/classes/filter/class_FilterChain.php b/inc/main/classes/filter/class_FilterChain.php index 0e4370cf..e30b4f23 100644 --- a/inc/main/classes/filter/class_FilterChain.php +++ b/inc/main/classes/filter/class_FilterChain.php @@ -1,6 +1,6 @@