Neos\Flow\ResourceManagement\Target\FileSystemSymlinkTarget::setOption PHP Method

setOption() protected method

Set an option value and return if it was set.
protected setOption ( string $key, mixed $value ) : boolean
$key string
$value mixed
return boolean
    protected function setOption($key, $value)
    {
        if ($key === 'relativeSymlinks') {
            $this->relativeSymlinks = (bool) $value;
            return true;
        }
        return parent::setOption($key, $value);
    }