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

TranslatableInterface.php 277B

před 2 roky
12345678910111213
  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. }