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
23interface Factory
24{
47 public function content(string $content): Content;
48
73 public function latexContent(string $content): LatexContent;
74
97 public function segment(string $title, string $content): Segment;
98
99}
Builds a Color from either hex- or rgb values.
Definition: Factory.php:31
segment(string $title, string $content)