1 | <?php |
||
10 | class TemplateFactory |
||
11 | { |
||
12 | /** |
||
13 | * Return template from available list of templates. |
||
14 | * |
||
15 | * @param string $name - available templates: bootstrap3, bootstrap4, foundation5, foundation6, semantic2, uikit2 |
||
16 | * |
||
17 | * @return TemplateInterface |
||
18 | * @throws FlashTemplateNotFoundException |
||
19 | */ |
||
20 | 82 | public static function create($name = Templates::BASE) |
|
30 | } |
||
31 |