ILIAS  trunk Revision v12.0_alpha-377-g3641b37b9db
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)