1 | <?php |
||
22 | final class AmpThemeLoader implements ThemeLoaderInterface |
||
23 | { |
||
24 | /** |
||
25 | * @var \Twig_Loader_Filesystem |
||
26 | */ |
||
27 | private $filesystem; |
||
28 | |||
29 | /** |
||
30 | * @var ThemeContextInterface |
||
31 | */ |
||
32 | private $themeContext; |
||
33 | |||
34 | /** |
||
35 | * @var string |
||
36 | */ |
||
37 | private $themePath; |
||
38 | |||
39 | /** |
||
40 | * @param \Twig_Loader_Filesystem $filesystem |
||
41 | * @param ThemeContextInterface $themeContext |
||
42 | * @param string $themePath |
||
43 | */ |
||
44 | 2 | public function __construct( |
|
53 | |||
54 | /** |
||
55 | * {@inheritdoc} |
||
56 | */ |
||
57 | 2 | public function load() |
|
64 | } |
||
65 |