| 1 | <?php |
||
| 9 | class CachedManifestLoader implements ManifestLoaderInterface |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var ManifestLoaderInterface |
||
| 13 | */ |
||
| 14 | private $loader; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var ConfigCache |
||
| 18 | */ |
||
| 19 | private $cache; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param string $cacheDir |
||
| 23 | * @param bool $debug |
||
| 24 | * @param ManifestLoaderInterface $loader |
||
| 25 | */ |
||
| 26 | 3 | public function __construct($cacheDir, $debug, ManifestLoaderInterface $loader) |
|
| 33 | |||
| 34 | /** |
||
| 35 | * {@inheritdoc} |
||
| 36 | */ |
||
| 37 | 3 | public function load() |
|
| 50 | |||
| 51 | /** |
||
| 52 | * {@inheritdoc} |
||
| 53 | */ |
||
| 54 | 3 | public function getPath() |
|
| 58 | } |
||
| 59 |