PHPDaemon\Examples\GameMonitor::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->client) {
            return $this->client->onShutdown();
        }
        return true;
    }