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 line
646B

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