/**
     * @return string The task results for already complete tasks
     */
    public function get_results()
    {
        $intWpTermRelationshipsCount = WpTermRelationships::CountAll();
        $strResults = <<<RESULT
\t\t<li><strong>{$this->intTermRelationshipsCount}</strong> term relationships from <strong>{$this->intDleTermRelationshipsCount}</strong> converted. The wordpress database already has <strong>{$intWpTermRelationshipsCount}</strong> term relationships.</li>
RESULT;
        return $strResults;
    }