1 | <?php |
||
16 | final class ThemeLoader implements ThemeLoaderInterface |
||
17 | { |
||
18 | /** |
||
19 | * @var FilesystemLoader |
||
20 | */ |
||
21 | private $filesystem; |
||
22 | |||
23 | /** |
||
24 | * @var string |
||
25 | */ |
||
26 | private $themePath; |
||
27 | |||
28 | /** |
||
29 | * @param FilesystemLoader $filesystem |
||
30 | * @param $themePath |
||
31 | */ |
||
32 | public function __construct(FilesystemLoader $filesystem, $themePath) |
||
37 | |||
38 | /** |
||
39 | * {@inheritdoc} |
||
40 | */ |
||
41 | public function load() |
||
45 | } |
||
46 |