]> git.mxchange.org Git - core.git/commitdiff
Continued:
authorRoland Haeder <roland@mxchange.org>
Sat, 25 Feb 2017 14:11:49 +0000 (15:11 +0100)
committerRoland Haeder <roland@mxchange.org>
Tue, 28 Feb 2017 21:10:04 +0000 (22:10 +0100)
- added "import" for Commandable
- added "import" for Controller
- added "import" for Requestable/Responseable
- added "import" for CommandResolver/Resolver
- added missing namespace in config.php

Signed-off-by: Roland Häder <roland@mxchange.org>
41 files changed:
application/tests/classes/commands/console/class_TestsConsoleMainCommand.php
application/tests/classes/controller/console/class_TestsConsoleDefaultNewsController.php
application/tests/classes/resolver/controller/class_TestsConsoleControllerResolver.php
inc/config.php
inc/main/classes/actions/html/class_HtmlLoginProfileAction.php
inc/main/classes/class_BaseFrameworkSystem.php
inc/main/classes/commands/console/class_ConsoleFuseCommand.php
inc/main/classes/commands/html/class_HtmlConfirmCommand.php
inc/main/classes/commands/html/class_HtmlDoFormCommand.php
inc/main/classes/commands/html/class_HtmlHomeCommand.php
inc/main/classes/commands/html/class_HtmlLoginAreaCommand.php
inc/main/classes/commands/html/class_HtmlLoginCommand.php
inc/main/classes/commands/html/class_HtmlLoginFailedCommand.php
inc/main/classes/commands/html/class_HtmlLogoutCommand.php
inc/main/classes/commands/html/class_HtmlLogoutDoneCommand.php
inc/main/classes/commands/html/class_HtmlProblemCommand.php
inc/main/classes/commands/html/class_HtmlRegisterCommand.php
inc/main/classes/commands/html/class_HtmlResendLinkCommand.php
inc/main/classes/commands/html/class_HtmlStatusCommand.php
inc/main/classes/commands/image/class_ImageCodeCaptchaCommand.php
inc/main/classes/controller/console/class_ConsoleDefaultController.php
inc/main/classes/controller/console/class_ConsoleDefaultNewsController.php
inc/main/classes/controller/html/class_HtmlConfirmController.php
inc/main/classes/controller/html/class_HtmlDefaultController.php
inc/main/classes/controller/html/class_HtmlDefaultNewsController.php
inc/main/classes/controller/html/class_HtmlLoginController.php
inc/main/classes/controller/html/class_HtmlLoginFailedController.php
inc/main/classes/controller/html/class_HtmlLogoutController.php
inc/main/classes/controller/html/class_HtmlLogoutDoneController.php
inc/main/classes/controller/html/class_HtmlProblemController.php
inc/main/classes/controller/html/class_HtmlRegisterController.php
inc/main/classes/controller/html/class_HtmlStatusController.php
inc/main/classes/controller/html/form/class_HtmlDoFormController.php
inc/main/classes/controller/html/login/class_HtmlLoginAreaController.php
inc/main/classes/controller/image/captcha/class_ImageCodeCaptchaController.php
inc/main/classes/controller/image/class_ImageDefaultController.php
inc/main/classes/filter/class_FilterChain.php
inc/main/classes/resolver/command/console/class_ConsoleCommandResolver.php
inc/main/classes/resolver/command/html/class_HtmlCommandResolver.php
inc/main/classes/resolver/command/image/class_ImageCommandResolver.php
inc/main/interfaces/actions/commands/class_Commandable.php

index 81a2a47eb17d7a70db76b52c171c2157cdb64fcb..f6de46d8458147af5d139746d88d1b481859ca91 100644 (file)
@@ -4,6 +4,11 @@ namespace CoreFramework\Tests\Command;
 
 // Import framework stuff
 use CoreFramework\Command\BaseCommand;
 
 // 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
 
 /**
  * A command for the 'main' routine
index 83e9fafda84e147226f7c143671bb730089ae94d..f5639f64577919fb7c4cda6ec1e6a7760c36c53b 100644 (file)
@@ -6,6 +6,7 @@ namespace CoreFramework\Tests\Controller;
 use CoreFramework\Controller\BaseController;
 use CoreFramework\Controller\Controller;
 use CoreFramework\Request\Requestable;
 use CoreFramework\Controller\BaseController;
 use CoreFramework\Controller\Controller;
 use CoreFramework\Request\Requestable;
+use CoreFramework\Resolver\Command\CommandResolver;
 use CoreFramework\Response\Responseable;
 
 /**
 use CoreFramework\Response\Responseable;
 
 /**
index ad250cabf3d02dd87544b887e42e9f4cc8f26032..1b35dcec1a3b6586adaf5ccd77329f669cd66694 100644 (file)
@@ -4,6 +4,7 @@ namespace CoreFramework\Tests\Resolver\Controller;
 
 // Import framework stuff
 use CoreFramework\Controller\BaseController;
 
 // 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;
 use CoreFramework\Manager\ManageableApplication;
 use CoreFramework\Resolver\Controller\BaseControllerResolver;
 use CoreFramework\Resolver\Controller\ControllerResolver;
index e4ce10cd572905e76d5469b81c838e791b01d410..14518b175a6403f45055921418691c1e75b39e7a 100644 (file)
@@ -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('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');
 
 // CFG: FILE-INPUT-CLASS
 $cfg->setConfigEntry('file_input_class', 'CoreFramework\Stream\Filesystem\FileIoStream');
index 9875268be71c6327344a73063f75183e997f8a35..f134e09fd49105b202969aa6bd548e851bb5d523 100644 (file)
@@ -4,6 +4,7 @@ namespace CoreFramework\Action\Login;
 
 // Import framework stuff
 use CoreFramework\Action\PerformableAction;
 
 // Import framework stuff
 use CoreFramework\Action\PerformableAction;
+use CoreFranework\Controller\Controller;
 use CoreFramework\Factory\ObjectFactory;
 use CoreFramework\Registry\Registerable;
 use CoreFramework\Request\Requestable;
 use CoreFramework\Factory\ObjectFactory;
 use CoreFramework\Registry\Registerable;
 use CoreFramework\Request\Requestable;
index ffae818445cdb82e9b01fd7e54e1d18abdba1f54..ec28c77fe21636def133b11f12fa5cdbdc914dfb 100644 (file)
@@ -4,6 +4,7 @@ namespace CoreFramework\Object;
 
 // Import framework stuff
 use CoreFramework\Configuration\FrameworkConfiguration;
 
 // Import framework stuff
 use CoreFramework\Configuration\FrameworkConfiguration;
+use CoreFranework\Controller\Controller;
 use CoreFramework\Factory\ObjectFactory;
 use CoreFramework\Generic\FrameworkInterface;
 use CoreFramework\Generic\NullPointerException;
 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\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;
 use CoreFramework\Response\Responseable;
 use CoreFramework\Stream\Output\OutputStreamer;
 use CoreFramework\Template\CompileableTemplate;
index d36f486ab0c65ec5d4db0c62a7c6fc9ecf3c407f..9ba3e02cb02963dba65aaedbb5ef8bdf0120a486 100644 (file)
@@ -4,7 +4,10 @@ namespace CoreFramework\Command\Fuse;
 
 // Import framework stuff
 use CoreFramework\Command\BaseCommand;
 
 // Import framework stuff
 use CoreFramework\Command\BaseCommand;
+use CoreFramework\Command\Commandable;
+use CoreFranework\Controller\Controller;
 use CoreFramework\Request\Requestable;
 use CoreFramework\Request\Requestable;
+use CoreFramework\Resolver\Command\CommandResolver;
 use CoreFramework\Response\Responseable;
 
 /**
 use CoreFramework\Response\Responseable;
 
 /**
index 526540c7d1bed4b3583b130984b577cc6bb86af6..4057c5bc13fc773e877bd73b3f213777070eaaf5 100644 (file)
@@ -4,10 +4,13 @@ namespace CoreFramework\Command\Guest;
 
 // Import framework stuff
 use CoreFramework\Command\BaseCommand;
 
 // 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\Factory\ObjectFactory;
 use CoreFramework\Generic\NullPointerException;
 use CoreFramework\Registry\Registry;
 use CoreFramework\Request\Requestable;
+use CoreFramework\Resolver\Command\CommandResolver;
 use CoreFramework\Response\Responseable;
 
 /**
 use CoreFramework\Response\Responseable;
 
 /**
index f1c193044d31762a039150632961d58983f6ebdc..a23dc9b00739ed5f7572dacb3b8b5dcdbb5f17f5 100644 (file)
@@ -4,7 +4,10 @@ namespace CoreFramework\Command\Form;
 
 // Import framework stuff
 use CoreFramework\Command\BaseCommand;
 
 // Import framework stuff
 use CoreFramework\Command\BaseCommand;
+use CoreFramework\Command\Commandable;
+use CoreFranework\Controller\Controller;
 use CoreFramework\Request\Requestable;
 use CoreFramework\Request\Requestable;
+use CoreFramework\Resolver\Command\CommandResolver;
 use CoreFramework\Response\Responseable;
 
 /**
 use CoreFramework\Response\Responseable;
 
 /**
index 50350bb3daeb18e7c3e976d1e956697d6e5d23f7..1029e649287a3bfc1bf34ae57f2392ed614426d7 100644 (file)
@@ -4,8 +4,11 @@ namespace CoreFramework\Command\Guest;
 
 // Import framework stuff
 use CoreFramework\Command\BaseCommand;
 
 // 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\Factory\ObjectFactory;
 use CoreFramework\Request\Requestable;
+use CoreFramework\Resolver\Command\CommandResolver;
 use CoreFramework\Response\Responseable;
 
 /**
 use CoreFramework\Response\Responseable;
 
 /**
index 9bc563c0517aff32e1a7680e0804662ee1cbf79c..a22b6a324e678687e88b6ad9323d6440b852dd73 100644 (file)
@@ -5,9 +5,12 @@ namespace CoreFramework\Command\Login;
 // Import framework stuff
 use CoreFramework\Action\PerformableAction;
 use CoreFramework\Command\BaseCommand;
 // 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\Factory\ObjectFactory;
 use CoreFramework\Registry\Registry;
 use CoreFramework\Request\Requestable;
+use CoreFramework\Resolver\Command\CommandResolver;
 use CoreFramework\Response\Responseable;
 
 /**
 use CoreFramework\Response\Responseable;
 
 /**
index 707324682d0136441cbd53ee162dff844d3bf6ac..d7e942a9aea765507ee1169d78f9ca9177e96498 100644 (file)
@@ -4,10 +4,13 @@ namespace CoreFramework\Command\Login;
 
 // Import framework stuff
 use CoreFramework\Command\BaseCommand;
 
 // 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\Factory\ObjectFactory;
 use CoreFramework\Registry\Registerable;
 use CoreFramework\Registry\Registry;
 use CoreFramework\Request\Requestable;
+use CoreFramework\Resolver\Command\CommandResolver;
 use CoreFramework\Response\Responseable;
 
 /**
 use CoreFramework\Response\Responseable;
 
 /**
index 7188904ce840607d75e82890c0e9b87511c7632a..551534eb73e28042b14f0a744348ff7a80a58585 100644 (file)
@@ -4,8 +4,11 @@ namespace CoreFramework\Command\Failed;
 
 // Import framework stuff
 use CoreFramework\Command\BaseCommand;
 
 // 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\Factory\ObjectFactory;
 use CoreFramework\Request\Requestable;
+use CoreFramework\Resolver\Command\CommandResolver;
 use CoreFramework\Response\Responseable;
 
 /**
 use CoreFramework\Response\Responseable;
 
 /**
index 20111df2a92cec3565f817f3fb67da6ca91cdf6c..35991a2aa1a4348f0fc960e4c84af41114761bed 100644 (file)
@@ -4,8 +4,11 @@ namespace CoreFramework\Command\Login;
 
 // Import framework stuff
 use CoreFramework\Command\BaseCommand;
 
 // 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\Factory\ObjectFactory;
 use CoreFramework\Request\Requestable;
+use CoreFramework\Resolver\Command\CommandResolver;
 use CoreFramework\Response\Responseable;
 
 /**
 use CoreFramework\Response\Responseable;
 
 /**
index fa669104c10046e0a20e4e761076b2620cf2233d..f418b8e3077d9c11063bad09292845cf58333cc3 100644 (file)
@@ -4,8 +4,11 @@ namespace CoreFramework\Command\Logout;
 
 // Import framework stuff
 use CoreFramework\Command\BaseCommand;
 
 // 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\Factory\ObjectFactory;
 use CoreFramework\Request\Requestable;
+use CoreFramework\Resolver\Command\CommandResolver;
 use CoreFramework\Response\Responseable;
 
 /**
 use CoreFramework\Response\Responseable;
 
 /**
index a796c01769d3bfebf925323d652b769ced62a35f..617b744d655a8e16feacc5d3611cf67b122d8c16 100644 (file)
@@ -4,7 +4,10 @@ namespace CoreFramework\Command\Failed;
 
 // Import framework stuff
 use CoreFramework\Command\BaseCommand;
 
 // Import framework stuff
 use CoreFramework\Command\BaseCommand;
+use CoreFramework\Command\Commandable;
+use CoreFranework\Controller\Controller;
 use CoreFramework\Request\Requestable;
 use CoreFramework\Request\Requestable;
+use CoreFramework\Resolver\Command\CommandResolver;
 use CoreFramework\Response\Responseable;
 
 /**
 use CoreFramework\Response\Responseable;
 
 /**
index aaf5c4e52a9a00e9eb2508c2624c2420bb604f9e..a47b2a8f1f35fdbccfd4e2fd33cf2514f746fccc 100644 (file)
@@ -4,10 +4,13 @@ namespace CoreFramework\Command\Register;
 
 // Import framework stuff
 use CoreFramework\Command\BaseCommand;
 
 // 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\Factory\ObjectFactory;
 use CoreFramework\Registry\Registerable;
 use CoreFramework\Registry\Registry;
 use CoreFramework\Request\Requestable;
+use CoreFramework\Resolver\Command\CommandResolver;
 use CoreFramework\Response\Responseable;
 
 /**
 use CoreFramework\Response\Responseable;
 
 /**
index a8b1fc729577afb819d985aec46eb61fb31eafd4..d4e25cd410f81933da4164743708012f7845f639 100644 (file)
@@ -4,9 +4,12 @@ namespace CoreFramework\Command\Guest;
 
 // Import framework stuff
 use CoreFramework\Command\BaseCommand;
 
 // 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\Factory\ObjectFactory;
 use CoreFramework\Registry\Registry;
 use CoreFramework\Request\Requestable;
+use CoreFramework\Resolver\Command\CommandResolver;
 use CoreFramework\Response\Responseable;
 
 /**
 use CoreFramework\Response\Responseable;
 
 /**
index 938e3cc9c235135770dcfbcb0082f14bc665ec99..d208f21415d6093d9ebd33bada93575b58b542b8 100644 (file)
@@ -4,8 +4,11 @@ namespace CoreFramework\Command\Status;
 
 // Import framework stuff
 use CoreFramework\Command\BaseCommand;
 
 // 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\Factory\ObjectFactory;
 use CoreFramework\Request\Requestable;
+use CoreFramework\Resolver\Command\CommandResolver;
 use CoreFramework\Response\Responseable;
 
 /**
 use CoreFramework\Response\Responseable;
 
 /**
index 14345a554f459004eabb6f40d3a7f0d7c30efd81..e9c3226ba6e08277e04ceb241031fc93165d04ca 100644 (file)
@@ -4,7 +4,10 @@ namespace CoreFramework\Command\Captcha;
 
 // Import framework stuff
 use CoreFramework\Command\BaseCommand;
 
 // Import framework stuff
 use CoreFramework\Command\BaseCommand;
+use CoreFramework\Command\Commandable;
+use CoreFranework\Controller\Controller;
 use CoreFramework\Request\Requestable;
 use CoreFramework\Request\Requestable;
+use CoreFramework\Resolver\Command\CommandResolver;
 use CoreFramework\Response\Responseable;
 
 /**
 use CoreFramework\Response\Responseable;
 
 /**
index cd4afa3694d437d21ff31416ce484a5fb9b99e3e..a8016859fd96dd1d7762b86c931e326aa578b724 100644 (file)
@@ -5,6 +5,7 @@ namespace CoreFramework\Controller\Default;
 // Import framework stuff
 use CoreFramework\Controller\BaseController;
 use CoreFramework\Request\Requestable;
 // Import framework stuff
 use CoreFramework\Controller\BaseController;
 use CoreFramework\Request\Requestable;
+use CoreFramework\Resolver\Command\CommandResolver;
 use CoreFramework\Response\Responseable;
 
 /**
 use CoreFramework\Response\Responseable;
 
 /**
index 8625a332c3a4d1977b3f8fe9b242246f5a79f348..c8655fd3223a4514ff25536e586d5c14eed82c9c 100644 (file)
@@ -7,6 +7,7 @@ use CoreFramework\Controller\BaseController;
 use CoreFramework\Controller\Controller;
 use CoreFramework\Factory\ObjectFactory;
 use CoreFramework\Request\Requestable;
 use CoreFramework\Controller\Controller;
 use CoreFramework\Factory\ObjectFactory;
 use CoreFramework\Request\Requestable;
+use CoreFramework\Resolver\Command\CommandResolver;
 use CoreFramework\Response\Responseable;
 
 /**
 use CoreFramework\Response\Responseable;
 
 /**
index 0982c52891306723699eb342cb8e7a06bfe7b563..c332342ee3a9133a2de72343aba1ab199e9a864f 100644 (file)
@@ -6,6 +6,7 @@ namespace CoreFramework\Controller\Confirm;
 use CoreFramework\Controller\BaseController;
 use CoreFramework\Controller\Controller;
 use CoreFramework\Factory\ObjectFactory;
 use CoreFramework\Controller\BaseController;
 use CoreFramework\Controller\Controller;
 use CoreFramework\Factory\ObjectFactory;
+use CoreFramework\Resolver\Command\CommandResolver;
 use CoreFramework\Response\Responseable;
 
 /**
 use CoreFramework\Response\Responseable;
 
 /**
index feb18d90b7c38c6d6fb75e22c20f7a49d18fd6bb..9ca28320da30cf410d12df65e710c2c9a91ac220 100644 (file)
@@ -6,6 +6,7 @@ namespace CoreFramework\Controller\Default;
 use CoreFramework\Controller\BaseController;
 use CoreFramework\Controller\Controller;
 use CoreFramework\Request\Requestable;
 use CoreFramework\Controller\BaseController;
 use CoreFramework\Controller\Controller;
 use CoreFramework\Request\Requestable;
+use CoreFramework\Resolver\Command\CommandResolver;
 use CoreFramework\Response\Responseable;
 
 /**
 use CoreFramework\Response\Responseable;
 
 /**
index 59d717fda21c59108b97f8e2bff0030f70efcfe7..2c8f854a47af8452b9173d821af0d73d125aec95 100644 (file)
@@ -6,6 +6,7 @@ namespace CoreFramework\Controller\News;
 use CoreFramework\Controller\BaseController;
 use CoreFramework\Controller\Controller;
 use CoreFramework\Factory\ObjectFactory;
 use CoreFramework\Controller\BaseController;
 use CoreFramework\Controller\Controller;
 use CoreFramework\Factory\ObjectFactory;
+use CoreFramework\Resolver\Command\CommandResolver;
 use CoreFramework\Response\Responseable;
 
 /**
 use CoreFramework\Response\Responseable;
 
 /**
index 181f107f690b111cb9944de8b7bde4660cf1ca58..166a9ed9d75128937454ee28edd1d43df57fb440 100644 (file)
@@ -6,6 +6,7 @@ namespace CoreFramework\Controller\Login;
 use CoreFramework\Controller\BaseController;
 use CoreFramework\Controller\Controller;
 use CoreFramework\Request\Requestable;
 use CoreFramework\Controller\BaseController;
 use CoreFramework\Controller\Controller;
 use CoreFramework\Request\Requestable;
+use CoreFramework\Resolver\Command\CommandResolver;
 use CoreFramework\Response\Responseable;
 
 /**
 use CoreFramework\Response\Responseable;
 
 /**
index 34b52d9045b17dfcbc17073560a6c5ae417983fb..43d0596d48466c519129cf483354308944a4ef77 100644 (file)
@@ -6,6 +6,7 @@ namespace CoreFramework\Controller\Failed;
 use CoreFramework\Controller\BaseController;
 use CoreFramework\Controller\Controller;
 use CoreFramework\Request\Requestable;
 use CoreFramework\Controller\BaseController;
 use CoreFramework\Controller\Controller;
 use CoreFramework\Request\Requestable;
+use CoreFramework\Resolver\Command\CommandResolver;
 use CoreFramework\Response\Responseable;
 
 /**
 use CoreFramework\Response\Responseable;
 
 /**
index ffa9675e207574aa5536e4600ebe64f4ab652d4d..ff14940e7afe9722c0460404faaf60feff00f974 100644 (file)
@@ -7,6 +7,7 @@ use CoreFramework\Controller\BaseController;
 use CoreFramework\Controller\Controller;
 use CoreFramework\Factory\ObjectFactory;
 use CoreFramework\Request\Requestable;
 use CoreFramework\Controller\Controller;
 use CoreFramework\Factory\ObjectFactory;
 use CoreFramework\Request\Requestable;
+use CoreFramework\Resolver\Command\CommandResolver;
 use CoreFramework\Response\Responseable;
 
 /**
 use CoreFramework\Response\Responseable;
 
 /**
index 1e3a2cddd8401ebec3edede0bf58900bceddaf64..1cd15298b021a2b5de812d0f0dab35b5331a2387 100644 (file)
@@ -6,6 +6,8 @@ namespace CoreFramework\Controller\Logout;
 use CoreFramework\Controller\BaseController;
 use CoreFramework\Controller\Controller;
 use CoreFramework\Request\Requestable;
 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
 
 /**
  * Controller for logout done page
index 1017a104d309b1fb0bb99d37ff171f13cb0c82ed..c26865c542c52f90ab944d35f25d57d3c6f40131 100644 (file)
@@ -6,6 +6,7 @@ namespace CoreFramework\Controller\Problem;
 use CoreFramework\Controller\BaseController;
 use CoreFramework\Controller\Controller;
 use CoreFramework\Request\Requestable;
 use CoreFramework\Controller\BaseController;
 use CoreFramework\Controller\Controller;
 use CoreFramework\Request\Requestable;
+use CoreFramework\Resolver\Command\CommandResolver;
 use CoreFramework\Response\Responseable;
 
 /**
 use CoreFramework\Response\Responseable;
 
 /**
index e299168ceccf92aaaff2ca7496533766394702be..3b63a48c742d7668a15305fe91ef706264e39654 100644 (file)
@@ -5,6 +5,8 @@ namespace CoreFramework\Controller\Register;
 // Import framework stuff
 use CoreFramework\Controller\BaseController;
 use CoreFramework\Controller\Controller;
 // Import framework stuff
 use CoreFramework\Controller\BaseController;
 use CoreFramework\Controller\Controller;
+use CoreFramework\Request\Requestable;
+use CoreFramework\Resolver\Command\CommandResolver;
 use CoreFramework\Response\Responseable;
 
 /**
 use CoreFramework\Response\Responseable;
 
 /**
index 34901917c34d858fedfe66546140144c41c0ad97..de54a85e48c57cad52cf5e4562b5c8ed293408b2 100644 (file)
@@ -6,6 +6,7 @@ namespace CoreFramework\Controller\Status;
 use CoreFramework\Controller\BaseController;
 use CoreFramework\Controller\Controller;
 use CoreFramework\Request\Requestable;
 use CoreFramework\Controller\BaseController;
 use CoreFramework\Controller\Controller;
 use CoreFramework\Request\Requestable;
+use CoreFramework\Resolver\Command\CommandResolver;
 use CoreFramework\Response\Responseable;
 
 /**
 use CoreFramework\Response\Responseable;
 
 /**
index 169f0e52a5822921939cd57e4261971f8b2cddfc..271e15da0c05dab5b37a660ef23b502ed3db9b3c 100644 (file)
@@ -6,6 +6,7 @@ namespace CoreFramework\Controller\Form;
 use CoreFramework\Controller\BaseController;
 use CoreFramework\Controller\Controller;
 use CoreFramework\Request\Requestable;
 use CoreFramework\Controller\BaseController;
 use CoreFramework\Controller\Controller;
 use CoreFramework\Request\Requestable;
+use CoreFramework\Resolver\Command\CommandResolver;
 use CoreFramework\Response\Responseable;
 
 /**
 use CoreFramework\Response\Responseable;
 
 /**
index 251f6db3f279ff76e03d8e68864ff30c9e237f0a..624955030bb1b9c42f1e73aaa349eb61c2b09bd0 100644 (file)
@@ -7,6 +7,7 @@ use CoreFramework\Controller\BaseController;
 use CoreFramework\Controller\Controller;
 use CoreFramework\Factory\ObjectFactory;
 use CoreFramework\Request\Requestable;
 use CoreFramework\Controller\Controller;
 use CoreFramework\Factory\ObjectFactory;
 use CoreFramework\Request\Requestable;
+use CoreFramework\Resolver\Command\CommandResolver;
 use CoreFramework\Response\Responseable;
 
 /**
 use CoreFramework\Response\Responseable;
 
 /**
index 4fa888dea3817020524fd077b6478f8741c817f4..bbd94fc192ec9f795b4ca6abe583c7745af12135 100644 (file)
@@ -7,6 +7,7 @@ use CoreFramework\Controller\BaseController;
 use CoreFramework\Controller\Controller;
 use CoreFramework\Factory\ObjectFactory;
 use CoreFramework\Request\Requestable;
 use CoreFramework\Controller\Controller;
 use CoreFramework\Factory\ObjectFactory;
 use CoreFramework\Request\Requestable;
+use CoreFramework\Resolver\Command\CommandResolver;
 use CoreFramework\Response\Responseable;
 
 /**
 use CoreFramework\Response\Responseable;
 
 /**
index 953cca0edc44c34a66868b32a29d8591d409df50..eaa9e845a6ba33ad97f0ff51dbde8471f22079c3 100644 (file)
@@ -6,6 +6,7 @@ namespace CoreFramework\Controller\Default;
 use CoreFramework\Controller\BaseController;
 use CoreFramework\Controller\Controller;
 use CoreFramework\Request\Requestable;
 use CoreFramework\Controller\BaseController;
 use CoreFramework\Controller\Controller;
 use CoreFramework\Request\Requestable;
+use CoreFramework\Resolver\Command\CommandResolver;
 use CoreFramework\Response\Responseable;
 
 /**
 use CoreFramework\Response\Responseable;
 
 /**
index 0e4370cf488fa8705e058547ccac5bef9c666772..e30b4f238f8013374d931471e39c3539c2cca36a 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 // Own namespace
 <?php
 // Own namespace
-namespace CoreFramework\Filter\Chain;
+namespace CoreFramework\Chain\Filter;
 
 // Import framework stuff
 use CoreFramework\Object\BaseFrameworkSystem;
 
 // Import framework stuff
 use CoreFramework\Object\BaseFrameworkSystem;
index d8761931cef5d7286d70ea676646070c9b291e2f..ccdec4caff32e2f179a4052d29fdd5ca5a1cac86 100644 (file)
@@ -6,6 +6,7 @@ namespace CoreFramework\Resolver\Command;
 use CoreFramework\Command\BaseCommand;
 use CoreFramework\Command\InvalidCommandException;
 use CoreFramework\Manager\ManageableApplication;
 use CoreFramework\Command\BaseCommand;
 use CoreFramework\Command\InvalidCommandException;
 use CoreFramework\Manager\ManageableApplication;
+use CoreFramework\Resolver\Command\CommandResolver;
 
 /**
  * A command resolver for local (non-hubbed) web commands
 
 /**
  * A command resolver for local (non-hubbed) web commands
index adc10cbeaae25ee40adda608bba7aa27ef2f2cb4..5a93e74a2aec6f261fbe32a8adff96d2dd41c9e0 100644 (file)
@@ -5,6 +5,7 @@ namespace CoreFramework\Resolver\Command;
 // Import framework stuff
 use CoreFramework\Command\InvalidCommandException;
 use CoreFramework\Manager\ManageableApplication;
 // Import framework stuff
 use CoreFramework\Command\InvalidCommandException;
 use CoreFramework\Manager\ManageableApplication;
+use CoreFramework\Resolver\Command\CommandResolver;
 
 /**
  * A command resolver for local (non-hubbed) HTML commands
 
 /**
  * A command resolver for local (non-hubbed) HTML commands
index 8d19319b9f4dfb9d29a60b552be450b5255a5da6..2bd6b383af1dc3643a2f7f43b1026114b760dc04 100644 (file)
@@ -5,6 +5,7 @@ namespace CoreFramework\Resolver\Command;
 // Import framework stuff
 use CoreFramework\Command\InvalidCommandException;
 use CoreFramework\Manager\ManageableApplication;
 // Import framework stuff
 use CoreFramework\Command\InvalidCommandException;
 use CoreFramework\Manager\ManageableApplication;
+use CoreFramework\Resolver\Command\CommandResolver;
 
 /**
  * A command resolver for local (non-hubbed) image commands
 
 /**
  * A command resolver for local (non-hubbed) image commands
index 528e55f55deb1a15dd0cad24779fc680761bde77..30fce5fc55525138fca0ebae1fd8f20913d1e11b 100644 (file)
@@ -4,6 +4,7 @@ namespace CoreFramework\Command;
 
 // Import framework stuff
 use CoreFramework\Action\PerformableAction;
 
 // Import framework stuff
 use CoreFramework\Action\PerformableAction;
+use CoreFranework\Controller\Controller;
 use CoreFramework\Request\Requestable;
 
 /**
 use CoreFramework\Request\Requestable;
 
 /**