morozovsk\websocket\Server::restart PHP Method

restart() public method

public restart ( )
    public function restart()
    {
        $pid = @file_get_contents($this->config['pid']);
        if ($pid) {
            $this->stop();
        }
        $this->start();
    }