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.

22 lines
720B

  1. <?php
  2. namespace App\Repository\CollectifData;
  3. use App\Entity\CollectifData\CollectifData;
  4. use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
  5. use Doctrine\Persistence\ManagerRegistry;
  6. /**
  7. * @method CollectifData|null find($id, $lockMode = null, $lockVersion = null)
  8. * @method CollectifData|null findOneBy(array $criteria, array $orderBy = null)
  9. * @method CollectifData[] findAll()
  10. * @method CollectifData[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
  11. */
  12. class CollectifDataRepository extends ServiceEntityRepository
  13. {
  14. public function __construct(ManagerRegistry $registry)
  15. {
  16. parent::__construct($registry, CollectifData::class);
  17. }
  18. }