App\services\Lastfm::formatText PHP Method

formatText() protected method

Correctly format a string returned by Last.fm.
protected formatText ( string $str ) : string
$str string
return string
    protected function formatText($str)
    {
        if (!$str) {
            return '';
        }
        return trim(str_replace('Read more on Last.fm', '', nl2br(strip_tags(html_entity_decode($str)))));
    }