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