X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=application%2Fhub%2Fmain%2Fchat%2Fconsole%2Fclass_NodeConsoleChat.php;fp=application%2Fhub%2Fmain%2Fchat%2Fconsole%2Fclass_NodeConsoleChat.php;h=46bb5b742bcfb60a91ecb188eb4c0175e106b1e0;hb=502ec0ce71bed01c7932df010a079378823d8e28;hp=c0bf80a4e474fb7bad4ee0d4302c706b7fad31f6;hpb=905d2ce648ef8be0d920310e2594ecb86e3558bd;p=hub.git diff --git a/application/hub/main/chat/console/class_NodeConsoleChat.php b/application/hub/main/chat/console/class_NodeConsoleChat.php index c0bf80a4e..46bb5b742 100644 --- a/application/hub/main/chat/console/class_NodeConsoleChat.php +++ b/application/hub/main/chat/console/class_NodeConsoleChat.php @@ -1,6 +1,6 @@ * @version 0.0.0 @@ -44,6 +44,38 @@ class NodeConsoleChat extends BaseNodeChat implements Chatter, Registerable { // 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]