Common\Core\Twig\Extensions\TwigFilters::deprecatedSprintf PHP Method

deprecatedSprintf() public static method

Show deprecated error for sprintf.
public static deprecatedSprintf ( ) : string
return string
    public static function deprecatedSprintf()
    {
        trigger_error('|sprintf is deprecated.
             Use |format(args)|raw instead', E_USER_DEPRECATED);
        return call_user_func_array('sprintf', func_get_args());
    }