Sulu\Bundle\PreviewBundle\Websocket\PreviewMessageHandler::reconnect PHP Method

reconnect() private method

Reconnect to mysql.
private reconnect ( )
    private function reconnect()
    {
        $connection = $this->entityManager->getConnection();
        try {
            $connection->executeQuery('SELECT 1;');
        } catch (DBALException $exc) {
            $connection->close();
            $connection->connect();
        }
    }