X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=application%2Fhub%2Fmain%2Fchat%2Fclass_;h=960e53d4f668b7f24cb09c40a334d97db29a003c;hb=502ec0ce71bed01c7932df010a079378823d8e28;hp=7d7325b7d77b9c19d384fced8766502cb66a9769;hpb=a0a0a197ca9f858041e636e47e3cc46d3d628d6c;p=hub.git diff --git a/application/hub/main/chat/class_ b/application/hub/main/chat/class_ index 7d7325b7d..960e53d4f 100644 --- a/application/hub/main/chat/class_ +++ b/application/hub/main/chat/class_ @@ -44,6 +44,38 @@ class Node???Chat extends BaseNodeChat implements Chatter { // Return the prepared instance return $chatInstance; } + + /** + * Method to "bootstrap" the chatter. This step does also apply provided + * command-line arguments stored in the request instance. You should now + * get it from calling $this->getRequestInstance(). + * + * @return void + */ + public function doBootstrapping () { + $this->partialStub('Please implement this method.'); + } + + /** + * Outputs the console teaser. This should only be executed on startup or + * full restarts. This method generates some space around the teaser. + * + * @return void + */ + public function outputConsoleTeaser () { + $this->partialStub('Please implement this method.'); + } + + /** + * Add some chatter-specific filters + * + * @param $controllerInstance An object of a Controller instance + * @param $responseInstance An object of a Responseable instance + * @return void + */ + public function addExtraFilters (Controller $controllerInstance, Responseable $responseInstance) { + $this->partialStub('Please implement this method.'); + } } // [EOF]