| 1 | <?php |
||
| 9 | class MasterSeoRequest implements SeoRequestInterface |
||
| 10 | { |
||
| 11 | /** @var DestinationInterface */ |
||
| 12 | private $destination; |
||
| 13 | /** @var SeoPageInterface */ |
||
| 14 | private $page; |
||
| 15 | /** @var DestinationMatcherInterface */ |
||
| 16 | private $matcher; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * MasterSeoRequest constructor. |
||
| 20 | * |
||
| 21 | * @param DestinationMatcherInterface $matcher |
||
| 22 | */ |
||
| 23 | 3 | public function __construct(DestinationMatcherInterface $matcher) |
|
| 27 | |||
| 28 | /** {@inheritdoc} */ |
||
| 29 | 2 | public function getDestination() |
|
| 37 | |||
| 38 | /** {@inheritdoc} */ |
||
| 39 | 2 | public function setDestination(DestinationInterface $destination) |
|
| 43 | |||
| 44 | /** {@inheritdoc} */ |
||
| 45 | 2 | public function getPage() |
|
| 53 | |||
| 54 | public function getRenderedPage() |
||
| 58 | } |
||
| 59 |