Potsky\LaravelLocalizationHelpers\Factory\MessageBag::cleanMessage PHP Method

cleanMessage() protected method

Trim and remove all XML tags
protected cleanMessage ( string $m ) : string
$m string the message to clean
return string
    protected function cleanMessage($m)
    {
        return preg_replace('@<[A-Za-z0-9/]*>@', '', trim($m));
    }