1 | <?php |
||
9 | class ODS implements EscaperInterface |
||
10 | { |
||
11 | /** |
||
12 | * Escapes the given string to make it compatible with ODS |
||
13 | * |
||
14 | * @param string $string The string to escape |
||
15 | * @return string The escaped string |
||
16 | */ |
||
17 | 41 | public function escape($string) |
|
21 | |||
22 | /** |
||
23 | * Unescapes the given string to make it compatible with ODS |
||
24 | * |
||
25 | * @param string $string The string to unescape |
||
26 | * @return string The unescaped string |
||
27 | */ |
||
28 | 29 | public function unescape($string) |
|
38 | } |
||
39 |