]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/nodes/class_
Method addExtraFilters() added to all node types (partial stub)
[hub.git] / application / hub / main / nodes / class_
index ec62ebbd2a74f6484274b8c3855f32c87a37c881..e82e94c7a84394f0f858716863cd8e9768b78170 100644 (file)
@@ -61,9 +61,6 @@ class Hub???Node extends BaseHubNode implements NodeHelper, Registerable {
                // Call generic (parent) bootstrapping method first
                parent::doGenericBootstrapping();
                $this->partialStub('Please implement this method.');
-
-               // This is the last line: output teaser
-               $this->outputTeaserLines();
        }
 
        /**
@@ -75,7 +72,19 @@ class Hub???Node extends BaseHubNode implements NodeHelper, Registerable {
        public function initQueues () {
                $this->partialStub('Please implement this method.');
        }
+
+       /**
+        * Adds some node-specific filters to the filter chains
+        *
+        * @param       $requestInstance        A Requestable class
+        * @param       $responseInstance       A Responseable class
+        * @return      void
+        * @todo        0%
+        */
+       public function addExtraFilters (Requestable $requestInstance, Responseable $responseInstance) {
+               $this->partialStub('Please implement this method.');
+       }
 }
 
-// [EOF]
+//
 ?>