Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

21 lines
546B

  1. <?php
  2. namespace Lc\SovBundle\Doctrine\Extension;
  3. use Lc\SovBundle\Model\File\FileInterface;
  4. interface OpenGraphInterface
  5. {
  6. public function getOpenGraphTitle(): ?string;
  7. public function setOpenGraphTitle(string $openGraphTitle): OpenGraphInterface;
  8. public function getOpenGraphDescription(): ?string;
  9. public function setOpenGraphDescription(?string $openGraphDescription): OpenGraphInterface;
  10. public function getOpenGraphImage(): ?FileInterface;
  11. public function setOpenGraphImage(?FileInterface $openGraphImage);
  12. }