]> git.mxchange.org Git - core.git/blobdiff - inc/main/classes/controller/image/captcha/class_ImageCodeCaptchaController.php
Continued:
[core.git] / inc / main / classes / controller / image / captcha / class_ImageCodeCaptchaController.php
index d8bb509c127a480e56c140a35aca5fe326572c5e..165dfd76e1be0faefdaeb32be5c20cd5cf5414d4 100644 (file)
@@ -1,4 +1,14 @@
 <?php
+// Own namespace
+namespace CoreFramework\Controller\Image\Captcha;
+
+// Import framework stuff
+use CoreFramework\Controller\BaseController;
+use CoreFramework\Controller\Generic\Controller;
+use CoreFramework\Factory\ObjectFactory;
+use CoreFramework\Request\Requestable;
+use CoreFramework\Response\Responseable;
+
 /**
  * A controller for a code-based CAPTCHA where the user has to repeat a shown code
  *
@@ -55,15 +65,13 @@ class ImageCodeCaptchaController extends BaseController implements Controller {
        /**
         * Handles the given request and response
         *
-        * @param       $requestInstance        An instance of a request class
-        * @param       $responseInstance       An instance of a response class
+        * @param       $requestInstance        An instance of a Requestable class
+        * @param       $responseInstance       An instance of a Responseable class
         * @return      void
         */
        public function handleRequest (Requestable $requestInstance, Responseable $responseInstance) {
                // Generic pre-post command execution
                $this->executeGenericPrePostCommand($requestInstance, $responseInstance);
        }
-}
 
-// [EOF]
-?>
+}