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
26interface Factory
27{
48 public function audio(string $source, string $transcript = ""): Audio;
49
73 public function video(string $source): Video;
74}
audio(string $source, string $transcript="")
Interface for Video elements.
Definition: Video.php:30