surveyConditionRepository->findMatchingCondition( (int) $survey->id, (int) $sourceQuestion->id, mb_strtolower(trim($normalizedAnswer)), ); if (null === $condition) { return null; } return $this->surveyQuestionRepository->findByIdForSurvey( (int) $survey->id, (int) $condition->targetQuestion, false, ); } }