# fluent-cart/1.5.0/vendor/openspout/openspout/src/Common/Manager/OptionsManagerInterface.php

FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler, version 1.5.0. 30 lines.

- Page: https://pluginprobe.com/plugins/fluent-cart/1.5.0/code/vendor/openspout/openspout/src/Common/Manager/OptionsManagerInterface.php
- Raw: https://pluginprobe.com/plugins/fluent-cart/1.5.0/raw/vendor/openspout/openspout/src/Common/Manager/OptionsManagerInterface.php
- Modified: 2025-11-20T13:11:16+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/fluent-cart/1.5.0/code/vendor/openspout/openspout/src/Common/Manager/OptionsManagerInterface.php#L10-L20`.

```php
<?php

namespace FluentCart\OpenSpout\Common\Manager;

/**
 * Interface OptionsManagerInterface.
 */
interface OptionsManagerInterface
{
    /**
     * @param string $optionName
     * @param mixed  $optionValue
     */
    public function setOption($optionName, $optionValue);
    /**
     * @param string $optionName
     *
     * @return null|mixed The set option or NULL if no option with given name found
     */
    public function getOption($optionName);
    /**
     * Add an option to the internal list of options
     * Used only for mergeCells() for now.
     *
     * @param mixed $optionName
     * @param mixed $optionValue
     */
    public function addOption($optionName, $optionValue);
}

```
