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

22 行
639B

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