context = $context; $this->session = $session; $this->from = $from; $this->to = $to; } /** * @return string */ public function getContext() { return $this->context; } /** * @return AssessmentTestSession */ public function getSession() { return $this->session; } /** * @return null|RouteItem */ public function getFrom() { return $this->from; } /** * @return null|RouteItem */ public function getTo() { return $this->to; } }