public function UnsavedIndexConfiguration::unsetThirdPartySetting in Search API 8
Unsets a third-party setting.
Parameters
string $module: The module providing the third-party setting.
string $key: The setting name.
Return value
mixed The value.
Overrides ThirdPartySettingsInterface::unsetThirdPartySetting
File
- src/
UnsavedIndexConfiguration.php, line 1104
Class
- UnsavedIndexConfiguration
- Represents a configuration of an index that was not yet permanently saved.
Namespace
Drupal\search_apiCode
public function unsetThirdPartySetting($module, $key) {
return $this->entity
->unsetThirdPartySetting($module, $key);
}