| 1 | <?php |
||
| 13 | class ODS implements EscaperInterface |
||
| 14 | { |
||
| 15 | use Singleton; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Escapes the given string to make it compatible with XLSX |
||
| 19 | * |
||
| 20 | * @param string $string The string to escape |
||
| 21 | * @return string The escaped string |
||
| 22 | */ |
||
| 23 | public function escape($string) |
||
| 27 | |||
| 28 | /** |
||
|
1 ignored issue
–
show
|
|||
| 29 | * Unescapes the given string to make it compatible with XLSX |
||
| 30 | * |
||
| 31 | * @param string $string The string to unescape |
||
| 32 | * @return string The unescaped string |
||
| 33 | */ |
||
| 34 | public function unescape($string) |
||
| 38 | } |
||
| 39 |