# fluentform/6.2.5/app/Services/Spout/Common/Escaper/CSV.php

Fluent Forms – Customizable Contact Forms, Survey, Quiz, &amp; Conversational Form Builder, version 6.2.5. 39 lines.

- Page: https://pluginprobe.com/plugins/fluentform/6.2.5/code/app/Services/Spout/Common/Escaper/CSV.php
- Raw: https://pluginprobe.com/plugins/fluentform/6.2.5/raw/app/Services/Spout/Common/Escaper/CSV.php
- Modified: 2019-05-31T20:28:28+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fluentform/6.2.5/code/app/Services/Spout/Common/Escaper/CSV.php#L10-L20`.

```php
<?php

namespace Box\Spout\Common\Escaper;

/**
 * Class CSV
 * Provides functions to escape and unescape data for CSV files
 *
 * @package Box\Spout\Common\Escaper
 */
class CSV implements EscaperInterface
{
    /**
     * Escapes the given string to make it compatible with CSV
     *
     * @codeCoverageIgnore
     *
     * @param string $string The string to escape
     * @return string The escaped string
     */
    public function escape($string)
    {
        return $string;
    }

    /**
     * Unescapes the given string to make it compatible with CSV
     *
     * @codeCoverageIgnore
     *
     * @param string $string The string to unescape
     * @return string The unescaped string
     */
    public function unescape($string)
    {
        return $string;
    }
}

```
