InfluxOW/php-project-lvl2

View on GitHub
src/Renderers/AbstractAstRenderer.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Differ\Renderers;

use Differ\Exceptions\RenderingException;

abstract class AbstractAstRenderer
{
    public const NAME = null;

    /**
     * @throws RenderingException
     */
    abstract public static function render(array $ast): string;
}