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

16 lines
266B

  1. <?php
  2. namespace Lc\AdminBundle\Repository;
  3. interface BaseRepositoryInterface
  4. {
  5. /**
  6. * Retourne la class ou l'interface correspondant à ce repository
  7. *
  8. * @return string
  9. */
  10. public function getInterfaceClass();
  11. }