ILIAS  trunk Revision v11.0_alpha-2662-g519ff7d528f
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 
39  public function util(): Util
40  {
41  return new Util();
42  }
43 }
__construct(InternalDomainService $domain, InternalGUIService $gui)