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ů.

14 lines
277B

  1. <?php
  2. namespace Lc\SovBundle\Doctrine\Extension;
  3. interface TranslatableInterface
  4. {
  5. public function setTranslatableLocale($locale);
  6. public function getLocalesEnabled(): ?array;
  7. public function setLocalesEnabled(?array $localesEnabled): TranslatableInterface;
  8. }