/**
  * Configures one setting
  * 
  * @access protected
  * @param string $path
  * @param string $value
  */
 protected function configureSetting($path, $value)
 {
     $newValue = $this->cliHelper->inputText('Please enter the value for "' . $path . '":', $value);
     if ($newValue === $value) {
         return;
     }
     $this->configurationManager->setSetting($path, $newValue);
 }