ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
GUIService.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Blog\ReadingTime;
22 
27 
29 {
30  public function __construct(
31  protected InternalDataService $data,
32  protected InternalDomainService $domain,
33  protected InternalGUIService $gui
34  ) {
35  }
36 
37  public function settingsGUI(int $obj_id): BlogSettingsGUI
38  {
39  return new BlogSettingsGUI(
40  $obj_id
41  );
42  }
43 }
__construct(protected InternalDataService $data, protected InternalDomainService $domain, protected InternalGUIService $gui)
Definition: GUIService.php:30