?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/schtroumpf.fr/vendor/doctrine/sql-formatter/src/



?? Go up: /home/webdevt/www/schtroumpf.fr/vendor/doctrine/sql-formatter

?? Viewing: NullHighlighter.php

<?php

declare(strict_types=1);

namespace Doctrine\SqlFormatter;

final class NullHighlighter implements Highlighter
{
    public function highlightToken(int $type, string $value): string
    {
        return $value;
    }

    public function highlightError(string $value): string
    {
        return $value;
    }

    public function highlightErrorMessage(string $value): string
    {
        return ' ' . $value;
    }

    public function output(string $string): string
    {
        return $string;
    }
}


??

??