Total Complexity | 1 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | abstract class BbcodeProcessor |
||
17 | { |
||
18 | protected $_sOptions; |
||
19 | |||
20 | /** |
||
21 | * Constructor |
||
22 | * |
||
23 | * @param \Saito\Markup\MarkupSettings $options options |
||
24 | */ |
||
25 | public function __construct(MarkupSettings $options) |
||
28 | } |
||
29 | |||
30 | /** |
||
31 | * Process |
||
32 | * |
||
33 | * @param string $string string to process |
||
34 | * |
||
35 | * @return string |
||
36 | */ |
||
37 | abstract public function process($string); |
||
38 | } |
||
39 |