]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/filter/task/apt-proxy/class_AptProxyTaskHandlerInitializerFilter.php
Updated 'core'.
[hub.git] / application / hub / main / filter / task / apt-proxy / class_AptProxyTaskHandlerInitializerFilter.php
index ead0fd4db1a0f51085982f3385f74b9f294b8abc..17e808a6276d2c15127747ab0d63ceb08d1684eb 100644 (file)
@@ -51,7 +51,7 @@ class AptProxyTaskHandlerInitializerFilter extends BaseAptProxyFilter implements
         * @param       $requestInstance        An instance of a class with an Requestable interface
         * @param       $responseInstance       An instance of a class with an Responseable interface
         * @return      void
-        * @throws      FilterChainException    If we need to interrupt the filter chain
+        * @throws      FilterChainException    If the filter chain needs to be interrupted
         * @todo        5% done
         */
        public function execute (Requestable $requestInstance, Responseable $responseInstance) {
@@ -61,6 +61,9 @@ class AptProxyTaskHandlerInitializerFilter extends BaseAptProxyFilter implements
                // Get a new task handler instance
                $handlerInstance = ObjectFactory::createObjectByConfiguredName('task_handler_class');
 
+               // Put the task handler in registry
+               Registry::getRegistry()->addInstance('task_handler', $handlerInstance);
+
                /*
                 * Register all tasks:
                 *
@@ -68,9 +71,6 @@ class AptProxyTaskHandlerInitializerFilter extends BaseAptProxyFilter implements
                 */
                $taskInstance = ObjectFactory::createObjectByConfiguredName('apt_proxy_listener_task_class');
                $handlerInstance->registerTask('apt_proxy_listener', $taskInstance);
-
-               // Put the task handler in registry
-               Registry::getRegistry()->addInstance('task_handler', $handlerInstance);
        }
 }