<?phpnamespace AppBundle\Repository;use AppBundle\Entity\Customer;use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;use Doctrine\Persistence\ManagerRegistry;/** * CustomerRepository. * * This class was generated by the Doctrine ORM. Add your own custom * repository methods below. */class CustomerRepository extends ServiceEntityRepository{ public function __construct(ManagerRegistry $registry) { parent::__construct($registry, Customer::class); }}