Common\Core\Twig\Extensions\BaseTwigModifiers::lowercase PHP Method

lowercase() public static method

syntax: {{ $string|lowercase }}.
public static lowercase ( string $string ) : string
$string string The string that you want to apply this method on.
return string The string, completely lowercased.
    public static function lowercase($string)
    {
        return mb_convert_case($string, MB_CASE_LOWER, \Spoon::getCharset());
    }