ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Factory.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
24
28interface Factory
29{
59 public function standard($title, Icon $icon): Toast;
60
84 public function container(): Container;
85}
This describes how an icon could be modified during construction of UI.
Definition: Icon.php:29
This is how a factory for Toast looks like.
Definition: Factory.php:29
standard($title, Icon $icon)