PHPDaemon\Examples\ExampleJabberbot::onShutdown PHP Method

onShutdown() public method

Called when application instance is going to shutdown.
public onShutdown ( ) : boolean
return boolean Ready to shutdown?
    public function onShutdown()
    {
        if ($this->xmppclient) {
            return $this->xmppclient->onShutdown();
        }
        return true;
    }