ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Presenter.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
24{
28
29 public function __construct(
33 ) {
34 $this->utilities = $utilities;
35 $this->data = $data;
36 $this->elements = $elements;
37 }
38
39 public function utilities(): UtilitiesInterface
40 {
41 return $this->utilities;
42 }
43
44 public function data(): DataInterface
45 {
46 return $this->data;
47 }
48
49 public function elements(): ElementsInterface
50 {
51 return $this->elements;
52 }
53}
__construct(UtilitiesInterface $utilities, DataInterface $data, ElementsInterface $elements)
Definition: Presenter.php:29