1 | <?php |
||
17 | class ComboStorage extends BaseObject implements StorageInterface |
||
18 | { |
||
19 | /** @var StorageInterface[] */ |
||
20 | private $storages; |
||
21 | |||
22 | public function init() |
||
30 | |||
31 | /** |
||
32 | * @param string $pageName |
||
33 | * @return AbstractPage|null |
||
34 | */ |
||
35 | public function getPage(string $pageName): ?AbstractPage |
||
45 | |||
46 | /** |
||
47 | * @param StorageInterface[] $storages |
||
48 | */ |
||
49 | public function setStorages(array $storages): void |
||
53 | } |
||
54 |