ILIAS  release_8 Revision v8.19-1-g4e8f2f9140c
All Data Structures Namespaces Files Functions Variables Modules Pages
class.GUIService.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
21 namespace ILIAS\Survey\Evaluation;
22 
25 
30 {
32  protected \ilObjectServiceInterface $object_service;
34 
35  public function __construct(
36  InternalGUIService $ui_service,
37  \ilObjectServiceInterface $object_service,
38  \ilObjSurvey $survey,
39  InternalDomainService $domain_service
40  ) {
41  $this->ui_service = $ui_service;
42  $this->object_service = $object_service;
43  $this->domain_service = $domain_service;
44  }
45 
46  public function request(): EvaluationGUIRequest
47  {
48  return new EvaluationGUIRequest(
49  $this->ui_service->http(),
50  $this->domain_service->refinery()
51  );
52  }
53 }
ilObjectServiceInterface $object_service
__construct(InternalGUIService $ui_service, \ilObjectServiceInterface $object_service, \ilObjSurvey $survey, InternalDomainService $domain_service)
InternalDomainService $domain_service
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...