Recca0120\LaravelTracy\Panels\HtmlValidatorPanel::normalizeNewLines PHP Method

normalizeNewLines() public static method

Standardize line endings to unix-like.
public static normalizeNewLines ( $s ) : string
return string
    public static function normalizeNewLines($s)
    {
        return str_replace(["\r\n", "\r"], "\n", $s);
    }