// Call generic (parent) bootstrapping method first
parent::doGenericBootstrapping();
$this->partialStub('Please implement this method.');
-
- // This is the last line: output teaser
- $this->outputTeaserLines();
}
/**
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]
+//
?>