src/AppBundle/Entity/Repository/WebsiteRepository.php line 14

Open in your IDE?
  1. <?php
  2. namespace AppBundle\Entity\Repository;
  3. use AppBundle\Entity\Website;
  4. use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
  5. use Doctrine\Persistence\ManagerRegistry;
  6. /**
  7.  * WebsiteRepository
  8.  */
  9. class WebsiteRepository extends ServiceEntityRepository
  10. {
  11.     public function __construct(ManagerRegistry $registry)
  12.     {
  13.         parent::__construct($registryWebsite::class);
  14.     }
  15. }