ILIAS  trunk Revision v11.0_alpha-1744-gb0451eebef4
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 {
28  protected InternalGUIService $gui;
30 
31  public function __construct(
32  InternalDomainService $domain,
33  InternalGUIService $gui
34  ) {
35  $this->domain = $domain;
36  $this->gui = $gui;
37  }
38 
39  public function util(): Util
40  {
41  return new Util();
42  }
43 }
__construct(InternalDomainService $domain, InternalGUIService $gui)