You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
613B

  1. <?php
  2. namespace Lc\AdminBundle\Repository\Cms;
  3. use Lc\AdminBundle\IModel\Cms\FileInterface;
  4. use Lc\AdminBundle\Repository\BaseRepository;
  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 BaseRepository
  12. {
  13. public function getInterfaceClass()
  14. {
  15. return FileInterface::class;
  16. }
  17. }