ILIAS  trunk Revision v11.0_alpha-2645-g16283d3b3f8
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
Builds a Color from either hex- or rgb values.
Definition: Factory.php:30
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(private HandlerService $handler_service, private URIBuilder $uri_builder, private Context $context)
Definition: Services.php:34