app\models\Artist::getNameAttribute PHP Method

getNameAttribute() public method

This makes sure they are always sane.
public getNameAttribute ( $value ) : string
$value
return string
    public function getNameAttribute($value)
    {
        return html_entity_decode($value ?: self::UNKNOWN_NAME);
    }