ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
FactoryInterface.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=0);
20
21namespace ILIAS\Tracking\View;
22
23use ILIAS\Tracking\View\Renderer\FactoryInterface as RendererFactoryInterface;
24use ILIAS\Tracking\View\DataRetrieval\FactoryInterface as DataRetrievalFactoryInterface;
25use ILIAS\Tracking\View\PropertyList\FactoryInterface as PropertyListFactoryInterface;
26use ILIAS\Tracking\View\ProgressBlock\FactoryInterface as ProgressBlockFactoryInterface;
27
29{
30 public function renderer(): RendererFactoryInterface;
31
32 public function dataRetrieval(): DataRetrievalFactoryInterface;
33
34 public function propertyList(): PropertyListFactoryInterface;
35
36 public function progressBlock(): ProgressBlockFactoryInterface;
37}