您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

FileRepository.php 616B

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