/**
* Sets session options
*
* @param array $options Session ini directives array(key => value).
*
* @return $this
*
* @see http://php.net/session.configuration
* @since 4.0.0
*/
public function setOptions(array $options) : NativeStorage
{
if (isset($options['force_ssl'])) {
$this->forceSSL = (bool) $options['force_ssl'];
}
return parent::setOptions($options);
}