Neos\FluidAdaptor\View\AbstractTemplateView::setOptions PHP Method

setOptions() protected method

Merges the given options with the default values and sets the resulting options in this object.
protected setOptions ( array $options )
$options array
    protected function setOptions(array $options)
    {
        $this->options = array_merge(array_map(function ($value) {
            return $value[0];
        }, $this->supportedOptions), $options);
    }