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
29class Factory implements P\Factory
30{
31 public function audio(string $source, string $transcript = ""): P\Audio
32 {
33 return new Audio($source, $transcript);
34 }
35
36 public function video(string $source): P\Video
37 {
38 return new Video($source);
39 }
40}
audio(string $source, string $transcript="")
Definition: Factory.php:31