Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

FileRepository.php 616B

pirms 3 gadiem
pirms 3 gadiem
pirms 3 gadiem
1234567891011121314151617181920
  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. }