| 1 | <?php |
||
| 10 | class CacheFetcher implements PageFetcherInterface |
||
| 11 | { |
||
| 12 | use OperatingSystemTrait; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var PageFetcherInterface |
||
| 16 | */ |
||
| 17 | private $fetcher; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var CacheAdapterInterface |
||
| 21 | */ |
||
| 22 | private $cache; |
||
| 23 | |||
| 24 | public function __construct(PageFetcherInterface $fetcher, CacheAdapterInterface $cache) |
||
| 29 | |||
| 30 | public function fetchPage(string $pageName, array $options = []): TldrPage |
||
| 44 | } |
||
| 45 |