D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
api2
/
vendor
/
nunomaduro
/
collision
/
src
/
Contracts
/
Filename :
Highlighter.php
back
Copy
<?php declare(strict_types=1); namespace NunoMaduro\Collision\Contracts; /** * @internal */ interface Highlighter { /** * Highlights the provided content. */ public function highlight(string $content, int $line): string; }