Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

OpenGraphInterface.php 546B

il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
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. }