]> git.mxchange.org Git - core.git/commitdiff
Added missing method.
authorRoland Haeder <roland@mxchange.org>
Tue, 25 Aug 2015 17:34:52 +0000 (19:34 +0200)
committerRoland Haeder <roland@mxchange.org>
Tue, 25 Aug 2015 17:34:52 +0000 (19:34 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
inc/main/classes/commands/class_
inc/main/classes/commands/console/class_Console
inc/main/classes/commands/console/class_ConsoleFuseCommand.php

index 271a1680fef9cfd8cdeeaacbf47f1fae3b447b24..38877a2a88b7f3c8959eea9eafc51060e294f165 100644 (file)
@@ -59,6 +59,17 @@ class ???Command extends BaseCommand implements Commandable {
        public function execute (Requestable $requestInstance, Responseable $responseInstance) {
                $this->partialStub('Unfinished!');
        }
+
+       /**
+        * Adds extra filters to the given controller instance
+        *
+        * @param       $controllerInstance             A controller instance
+        * @param       $requestInstance                An instance of a class with an Requestable interface
+        * @return      void
+        */
+       public function addExtraFilters (Controller $controllerInstance, Requestable $requestInstance) {
+               $this->partialStub('Unfinished!');
+       }
 }
 
 // [EOF]
index 829aabfde954350bf6aeda81477dabe83d55b9f1..b73c96a7a883168fa5c7818e454d5f673b2c0dea 100644 (file)
@@ -59,6 +59,17 @@ class Console???Command extends BaseCommand implements Commandable {
        public function execute (Requestable $requestInstance, Responseable $responseInstance) {
                $this->partialStub('Unfinished!');
        }
+
+       /**
+        * Adds extra filters to the given controller instance
+        *
+        * @param       $controllerInstance             A controller instance
+        * @param       $requestInstance                An instance of a class with an Requestable interface
+        * @return      void
+        */
+       public function addExtraFilters (Controller $controllerInstance, Requestable $requestInstance) {
+               $this->partialStub('Unfinished!');
+       }
 }
 
 // [EOF]
index 9677a8c7834e31373350b8da3b382325bd47db62..d2849d8319dce06a6a4ac08696485a76f67189ea 100644 (file)
@@ -72,6 +72,17 @@ class ConsoleFuseCommand extends BaseCommand implements Commandable {
                // @TODO Unfinished
                $this->partialStub('Still unfinished! ;-)');
        }
+
+       /**
+        * Adds extra filters to the given controller instance
+        *
+        * @param       $controllerInstance             A controller instance
+        * @param       $requestInstance                An instance of a class with an Requestable interface
+        * @return      void
+        */
+       public function addExtraFilters (Controller $controllerInstance, Requestable $requestInstance) {
+               // Empty for now ...
+       }
 }
 
 // [EOF]