Files
michaelschiemer/src/Framework/SyntaxHighlighter/Formatters/FormatterInterface.php

8 lines
167 B
PHP

<?php
namespace App\Framework\SyntaxHighlighter\Formatters;
interface FormatterInterface {
public function format(array $tokens, array $options = []): string;
}