- Fixed code in design directory.


git-svn-id: https://svn.apache.org/repos/asf/incubator/zetacomponents/trunk@1055093 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/MvcTools/design/controller.php b/MvcTools/design/controller.php
index 0a5727c..26cb537 100644
--- a/MvcTools/design/controller.php
+++ b/MvcTools/design/controller.php
@@ -54,12 +54,12 @@
      * Should be called at the start of the createResult() method to run
      * the request filters.
      */
-    protected function runRequestFilters();
+    public function runRequestFilters();
 
     /**
      * Should be called at the end of the createResult() method to run
      * the result filters.
      */
-    protected function runResultFilters();
+    public function runResultFilters();
 }
 ?>
diff --git a/MvcTools/design/response-writer.php b/MvcTools/design/response-writer.php
index 63036e8..c2899b8 100644
--- a/MvcTools/design/response-writer.php
+++ b/MvcTools/design/response-writer.php
@@ -19,6 +19,6 @@
      * protocol-dependent headers from the raw headers in the response object,
      * but before it is rendered for final output.
      */
-    protected function runResponseFilters();
+    public function runResponseFilters();
 }
 ?>