Your IP : 216.73.217.79


Current Path : /var/www/v3.cesa.co.za/src/ContactBundle/Repository/
Upload File :
Current File : /var/www/v3.cesa.co.za/src/ContactBundle/Repository/ContactMethodRepository.php

<?php

namespace App\ContactBundle\Repository;

use App\ContactBundle\Entity\ContactMethod;
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
use Doctrine\Persistence\ManagerRegistry;

class ContactMethodRepository extends ServiceEntityRepository
{
    public function __construct(ManagerRegistry $registry)
    {
        parent::__construct($registry, ContactMethod::class);
    }
}