| 1 | <?php |
||
| 7 | final class CachingConfigLoader implements ConfigLoader |
||
| 8 | { |
||
| 9 | /** @var ConfigLoader */ |
||
| 10 | private $configLoader; |
||
| 11 | |||
| 12 | /** @var string */ |
||
| 13 | private $cachedConfigFile; |
||
| 14 | |||
| 15 | public function __construct(ConfigLoader $configLoader, string $cachedConfigFile) |
||
| 20 | |||
| 21 | public function load(): array |
||
| 33 | } |
||
| 34 |