ILIAS  trunk Revision v11.0_alpha-1744-gb0451eebef4
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Factory.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=0);
20 
22 
23 use ILIAS\Tracking\View\Renderer\FactoryInterface as RendererFactoryInterface;
27 
28 class Factory implements RendererFactoryInterface
29 {
30  public function __construct(
31  protected UIServices $ui
32  ) {
33  }
34 
35  public function service(): RendererInterface
36  {
37  return new Renderer($this->ui);
38  }
39 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Provides fluid interface to RBAC services.
Definition: UIServices.php:24
__construct(protected UIServices $ui)
Definition: Factory.php:30