]> git.mxchange.org Git - shipsimu.git/blobdiff - inc/classes/interfaces/commands/class_Commandable.php
Simple exception handler and error handler added, profile update added with stubs
[shipsimu.git] / inc / classes / interfaces / commands / class_Commandable.php
index 4b3eaba9f8bcb5a43232a31c35a2f164dde9eec0..fa8796384c203bbd831b9d0cb0777f367b29a972 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * An interface for commands for the front controller
  *
- * @author             Roland Haeder <webmaster@mxchange.org>
+ * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
  * @copyright  Copyright(c) 2007, 2008 Roland Haeder, this is free software
  * @license            GNU GPL 3.0 or any newer version
- * @link               http://www.ship-simu.org
+ * @link               http://www.ship-simu.org
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  */
 interface Commandable extends FrameworkInterface {
        /**
-        * Executes the given command with given request and response objects
+        * Executes the command with given request and response objects
         *
         * @param       $requestInstance        An instance of a class with an Requestable interface
         * @param       $responseInstance       An instance of a class with an Responseable interface
         * @return      void
         */
        function execute (Requestable $requestInstance, Responseable $responseInstance);
+
+       /**
+        * Adds extra filters to the given controller instance
+        *
+        * @param       $controllerInstance             A controller instance
+        * @return      void
+        */
+       function addExtraFilters (Controller $controllerInstance);
 }
 
 //