PHPDaemon\Examples\ExampleIRCBot::onShutdown PHP 메소드

onShutdown() 공개 메소드

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