/**
* set the setting
*
* @since 3.0.0
*
* @param array $optionArray
*
* @return boolean
*/
protected function _set($optionArray = [])
{
$key = $this->prompt('key', $optionArray);
$value = $this->prompt('value', $optionArray);
if ($key && $value) {
return Db::setSetting($key, $value);
}
return false;
}