testSession = $testSession; $this->catSession = $catSession; $this->assessmentSection = $assessmentSection; } /** * Get the name of the Event. * * @return string */ public function getName() { return __CLASS__; } /** * Get the AssessmementTestSession bound to this Event. * * @return AssessmentTestSession */ public function getTestSession() { return $this->testSession; } public function getCatSession() { return $this->catSession; } public function getAssessmentSection() { return $this->assessmentSection; } }