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) |
|
25 | |||
26 | /** |
||
27 | * Unescapes the given string to make it compatible with ODS |
||
28 | * |
||
29 | * @param string $string The string to unescape |
||
30 | * @return string The unescaped string |
||
31 | */ |
||
32 | 29 | public function unescape($string) |
|
42 | } |
||
43 |