App\services\Lastfm::formatText PHP Méthode

formatText() protected méthode

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