1 | <?php |
||
11 | final class StaticPageRepository implements PageRepositoryInterface |
||
12 | { |
||
13 | /** @var SeoPageInterface[] */ |
||
14 | private $pages = []; |
||
15 | |||
16 | public function add(TargetDefinitionInterface $target, SeoPageInterface $page) |
||
20 | |||
21 | /** {@inheritdoc} */ |
||
22 | public function getByTargetDestination(TargetDefinitionInterface $target, DestinationInterface $destination = null) |
||
30 | } |
||
31 |