<?phpnamespace AppBundle\Entity\Repository;use AppBundle\Entity\Website;use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;use Doctrine\Persistence\ManagerRegistry;/** * WebsiteRepository */class WebsiteRepository extends ServiceEntityRepository{ public function __construct(ManagerRegistry $registry) { parent::__construct($registry, Website::class); }}