| 1 | <?php |
||
| 9 | class CSV implements EscaperInterface |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * Escapes the given string to make it compatible with CSV |
||
| 13 | * |
||
| 14 | * @codeCoverageIgnore |
||
| 15 | * |
||
| 16 | * @param string $string The string to escape |
||
| 17 | * @return string The escaped string |
||
| 18 | */ |
||
| 19 | public function escape($string) |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Unescapes the given string to make it compatible with CSV |
||
| 26 | * |
||
| 27 | * @codeCoverageIgnore |
||
| 28 | * |
||
| 29 | * @param string $string The string to unescape |
||
| 30 | * @return string The unescaped string |
||
| 31 | */ |
||
| 32 | public function unescape($string) |
||
| 36 | } |
||
| 37 |