/**
* Set the option
*
* @param string $key An option key
* @param string $value An option value
*
* @return self
*
* @since 4.0.0
*/
public function setOption(string $key, $value = null) : WebAssetItemInterface
{
$this->options[$key] = $value;
return $this;
}