X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fclasses%2Finterfaces%2Fcommands%2Fclass_Commandable.php;h=fa8796384c203bbd831b9d0cb0777f367b29a972;hb=390641f83ec749cc41a77bb80357105c200abb43;hp=379204e341914f8680d2e82bd4edfdc1258f1892;hpb=da516c3d08eed6ecc7e38bb99419971033432e69;p=shipsimu.git diff --git a/inc/classes/interfaces/commands/class_Commandable.php b/inc/classes/interfaces/commands/class_Commandable.php index 379204e..fa87963 100644 --- a/inc/classes/interfaces/commands/class_Commandable.php +++ b/inc/classes/interfaces/commands/class_Commandable.php @@ -6,7 +6,7 @@ * @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 @@ -30,6 +30,14 @@ interface Commandable extends FrameworkInterface { * @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); } //