]> git.mxchange.org Git - core.git/blobdiff - inc/main/classes/filter/class_BaseFilterDecorator.php
Continued:
[core.git] / inc / main / classes / filter / class_BaseFilterDecorator.php
index 68f50d0b0549fb136b29b11197684587f9facc5d..c25c8f66eb098467588b171071083c26d728aa10 100644 (file)
@@ -4,6 +4,7 @@ namespace CoreFramework\Filter;
 
 // Import framework stuff
 use CoreFramework\Object\BaseFrameworkSystem;
 
 // Import framework stuff
 use CoreFramework\Object\BaseFrameworkSystem;
+use CoreFramework\Request\Requestable;
 
 /**
  * A general filter decorator for decorating filters with other filters
 
 /**
  * A general filter decorator for decorating filters with other filters
@@ -66,8 +67,8 @@ abstract class BaseFilterDecorator extends BaseFrameworkSystem implements Filter
        /**
         * Execute the inner filter
         *
        /**
         * Execute the inner filter
         *
-        * @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 Responsable class
         * @return      void
         */
        public final function execute (Requestable $requestInstance, Responseable $responseInstance) {
         * @return      void
         */
        public final function execute (Requestable $requestInstance, Responseable $responseInstance) {
@@ -78,8 +79,8 @@ abstract class BaseFilterDecorator extends BaseFrameworkSystem implements Filter
        /**
         * Do the execution of the filter
         *
        /**
         * Do the execution of the filter
         *
-        * @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 Responsable class
         * @return      void
         */
        abstract public function doExecute (Requestable $requestInstance, Responseable $responseInstance);
         * @return      void
         */
        abstract public function doExecute (Requestable $requestInstance, Responseable $responseInstance);