/**
     * @return string The task results for already complete tasks
     */
    public function get_results()
    {
        $intDleCommentsCount = $this->get_process_objects_count();
        $intWpTermTaxonomyCount = WpComments::CountAll();
        $strResults = <<<RESULT
\t\t<li><strong>{$this->intCommentsCount}</strong> comments from <strong>{$intDleCommentsCount}</strong> converted. The wordpress database already has <strong>{$intWpTermTaxonomyCount}</strong> comments.</li>
RESULT;
        return $strResults;
    }