promoteCandidateToQuestion($candidateId); } public function reject(int $candidateId): void { PreQuestionCandidate::where('id', $candidateId)->update([ 'status' => PreQuestionCandidate::STATUS_REJECTED, ]); } }