ILIAS  trunk Revision v11.0_alpha-1713-gd8962da2f67
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.GUIService.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
25 
27 {
30 
31  public function __construct(
32  InternalDomainService $domain,
34  ) {
35  $this->domain = $domain;
36  $this->gui = $gui;
37  }
38 
40  {
41  return new StandardGUIRequest(
42  $this->gui->http(),
43  $this->domain->refinery()
44  );
45  }
46 }
__construct(InternalDomainService $domain, InternalGUIService $gui)