Continued:
[core.git] / inc / main / classes / filter / class_FilterChain.php
index de1e0da04b5b473bf3b7b620e782d40fed28dfc0..1d88e02021476b86be2f3d30ea11b67b5903da7b 100644 (file)
@@ -3,8 +3,9 @@
 namespace CoreFramework\Filter\Chain;
 
 // Import framework stuff
-use use CoreFramework\Registry\Registerable;
 use CoreFramework\Object\BaseFrameworkSystem;
+use CoreFramework\Registry\Registerable;
+use CoreFramework\Request\Requestable;
 
 /**
  * A filter chain for pre and post filters
@@ -114,8 +115,8 @@ class FilterChain extends BaseFrameworkSystem implements Registerable {
         * Process all added filters. Please note that filters must throw
         * FilterChainException if they need to interrupt the filter chain.
         *
-        * @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 processFilters (Requestable $requestInstance, Responseable $responseInstance) {