| 1 | <?php |
||
| 21 | final class TemplateFactory |
||
| 22 | { |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var EngineInterface |
||
| 26 | */ |
||
| 27 | private static $instance; |
||
| 28 | |||
| 29 | |||
| 30 | /** |
||
| 31 | * Gets the Slick/Form default engine renderer |
||
| 32 | * |
||
| 33 | * @return EngineInterface |
||
| 34 | */ |
||
| 35 | 20 | public static function getEngine() |
|
| 44 | |||
| 45 | /** |
||
| 46 | * Returns the path where HTML templates will live in |
||
| 47 | * |
||
| 48 | * @return string |
||
| 49 | */ |
||
| 50 | 2 | private static function getPath() |
|
| 54 | } |