# fluentform/6.2.5/app/Services/Spout/Reader/XLSX/ReaderOptions.php

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

- Page: https://pluginprobe.com/plugins/fluentform/6.2.5/code/app/Services/Spout/Reader/XLSX/ReaderOptions.php
- Raw: https://pluginprobe.com/plugins/fluentform/6.2.5/raw/app/Services/Spout/Reader/XLSX/ReaderOptions.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/Reader/XLSX/ReaderOptions.php#L10-L20`.

```php
<?php

namespace Box\Spout\Reader\XLSX;

/**
 * Class ReaderOptions
 * This class is used to customize the reader's behavior
 *
 * @package Box\Spout\Reader\XLSX
 */
class ReaderOptions extends \Box\Spout\Reader\Common\ReaderOptions
{
    /** @var string|null Temporary folder where the temporary files will be created */
    protected $tempFolder = null;

    /**
     * @return string|null Temporary folder where the temporary files will be created
     */
    public function getTempFolder()
    {
        return $this->tempFolder;
    }

    /**
     * @param string|null $tempFolder Temporary folder where the temporary files will be created
     * @return ReaderOptions
     */
    public function setTempFolder($tempFolder)
    {
        $this->tempFolder = $tempFolder;
        return $this;
    }
}

```
