Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

OpenGraphInterface.php 546B

2 lat temu
2 lat temu
2 lat temu
2 lat temu
2 lat temu
1234567891011121314151617181920
  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. }