Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

AbstractRepositoryInterface.php 268B

3 лет назад
123456789101112131415
  1. <?php
  2. namespace Lc\SovBundle\Repository;
  3. interface AbstractRepositoryInterface
  4. {
  5. /**
  6. * Retourne la class ou l'interface correspondant à ce repository
  7. *
  8. * @return string
  9. */
  10. public function getInterfaceClass();
  11. }