Arcanedev\SeoHelper\Entities\Title::renderTitleFirst PHP Method

renderTitleFirst() private method

Render title first.
private renderTitleFirst ( string $separator ) : string
$separator string
return string
    private function renderTitleFirst($separator)
    {
        $output = [];
        $output[] = $this->getTitleOnly();
        if ($this->hasSiteName()) {
            $output[] = $separator;
            $output[] = $this->getSiteName();
        }
        return implode('', $output);
    }