| Author | Dave Jarvis <email> |
|---|---|
| Date | 2026-02-14 20:42:46 GMT-0800 |
| Commit | 49ec8318646802e063f5e2a897dbbee2bf0ce58c |
| Parent | ca9f344 |
| public function renderSize( int $bytes ): void; | ||
| - public function highlight( string $content, string $language ): string; | ||
| + public function highlight( | ||
| + string $filename, | ||
| + string $content, | ||
| + string $mediaType | ||
| + ): string; | ||
| + | ||
| + public function renderTime( int $timestamp ): void; | ||
| } | ||
| } | ||
| - public function highlight( string $content, string $language ): string { | ||
| - return (new Highlighter($content, $language))->render(); | ||
| + public function highlight( | ||
| + string $filename, | ||
| + string $content, | ||
| + string $mediaType | ||
| + ): string { | ||
| + return (new Highlighter($filename, $content, $mediaType))->render(); | ||
| } | ||
| Delta | 13 lines added, 3 lines removed, 10-line increase |
|---|