Devise\Support\Str::opentag PHP Method

opentag() protected method

Gets opening tag for a string
protected opentag ( string $str ) : char
$str string
return char
    protected function opentag($str)
    {
        $str = ltrim($str);
        return substr($str, 0, 1);
    }