| 1 | <?php |
||
| 14 | final class ThemeLoader implements ThemeLoaderInterface |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var \Twig_Loader_Filesystem |
||
| 18 | */ |
||
| 19 | private $filesystem; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | private $themePath; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param \Twig_Loader_Filesystem $filesystem |
||
| 28 | * @param $themePath |
||
| 29 | */ |
||
| 30 | public function __construct(\Twig_Loader_Filesystem $filesystem, $themePath) |
||
| 35 | |||
| 36 | /** |
||
| 37 | * {@inheritdoc} |
||
| 38 | */ |
||
| 39 | public function load() |
||
| 43 | } |
||
| 44 |