/**
  * @param $currentRequestCmd
  * @return bool
  */
 private function isQuestionAmountConfigPerTestHintRequired($currentRequestCmd)
 {
     if ($currentRequestCmd != self::CMD_SHOW_SRC_POOL_DEF_LIST) {
         return false;
     }
     if (!$this->questionSetConfig->isQuestionAmountConfigurationModePerTest()) {
         return false;
     }
     return true;
 }