Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

21 lines
616B

  1. <?php
  2. namespace Lc\SovBundle\Repository\File;
  3. use Lc\SovBundle\Model\File\FileInterface;
  4. use Lc\SovBundle\Repository\AbstractRepository;
  5. /**
  6. * @method FileInterface|null find($id, $lockMode = null, $lockVersion = null)
  7. * @method FileInterface|null findOneBy(array $criteria, array $orderBy = null)
  8. * @method FileInterface[] findAll()
  9. * @method FileInterface[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
  10. */
  11. class FileRepository extends AbstractRepository
  12. {
  13. public function getInterfaceClass()
  14. {
  15. return FileInterface::class;
  16. }
  17. }