Archived
1
0
Fork 0
This repository has been archived on 2026-05-10. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
fiktivkod/library/Fiktiv/Highlighter/Abstract.php
2011-02-26 14:13:03 +01:00

8 lines
188 B
PHP

<?php
abstract class Fiktiv_Highlighter_Abstract {
abstract public function highlight($code, $lang = null, $options = array());
abstract public function setOptions($options);
}