ILIAS  trunk Revision v11.0_alpha-1761-g6dbbfa7b760
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Services.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\StaticURL;
22 
26 
30 class Services
31 {
33 
34  public function __construct(
35  private HandlerService $handler_service,
36  private URIBuilder $uri_builder,
37  private Context $context
38  ) {
39  }
40 
41  public function handler(): HandlerService
42  {
43  return $this->handler_service;
44  }
45 
46  public function builder(): URIBuilder
47  {
48  return $this->uri_builder;
49  }
50 
51 }
$context
Definition: webdav.php:31
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Builds data types.
Definition: Factory.php:35
__construct(private HandlerService $handler_service, private URIBuilder $uri_builder, private Context $context)
Definition: Services.php:34