| 1 | <?php |
||
| 20 | final class CachingConfigLoader implements ConfigLoaderInterface |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @var ConfigLoaderInterface |
||
| 24 | */ |
||
| 25 | private $configLoader; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var string |
||
| 29 | */ |
||
| 30 | private $cachedConfigFile; |
||
| 31 | |||
| 32 | public function __construct(ConfigLoaderInterface $configLoader, string $cachedConfigFile) |
||
| 37 | |||
| 38 | public function __invoke() : Config |
||
| 52 | } |
||
| 53 |