/**
  * Updates the account option named $name with the given $value.
  *
  * @param string $name  The name of the option whose value we want to update.
  * @param mixed  $value The new value of the option.
  *
  * @since 3.4.0
  */
 public static function update_nelioab_option($name, $value)
 {
     self::$settings = self::settings();
     self::$settings[$name] = $value;
     update_option('nelioab_account_settings', self::$settings);
 }