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

22 行
528B

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