1 | <?php |
||
12 | class TemplateCacheAsset extends BaseAsset |
||
13 | { |
||
14 | /** |
||
15 | * @var \Hshn\AngularBundle\TemplateCache\TemplateFinder |
||
16 | */ |
||
17 | private $templateFinder; |
||
18 | |||
19 | /** |
||
20 | * @var \Hshn\AngularBundle\TemplateCache\Compiler |
||
21 | */ |
||
22 | private $compiler; |
||
23 | |||
24 | /** |
||
25 | * @var \Hshn\AngularBundle\TemplateCache\ConfigurationInterface |
||
26 | */ |
||
27 | private $configuration; |
||
28 | |||
29 | /** |
||
30 | * @var bool |
||
31 | */ |
||
32 | private $initialized; |
||
33 | |||
34 | /** |
||
35 | * @var SplFileInfo[] |
||
36 | */ |
||
37 | private $templates; |
||
38 | |||
39 | /** |
||
40 | * @param TemplateFinder $templateFinder |
||
41 | * @param Compiler $compiler |
||
42 | * @param ConfigurationInterface $configuration |
||
43 | */ |
||
44 | public function __construct(TemplateFinder $templateFinder, Compiler $compiler, ConfigurationInterface $configuration) |
||
53 | |||
54 | /** |
||
55 | * {@inheritdoc} |
||
56 | */ |
||
57 | public function load(FilterInterface $additionalFilter = null) |
||
65 | |||
66 | /** |
||
67 | * {@inheritdoc} |
||
68 | */ |
||
69 | public function getLastModified() |
||
85 | |||
86 | /** |
||
87 | * {@inheritdoc} |
||
88 | */ |
||
89 | private function initialize() |
||
99 | } |
||
100 |