| Current Path : /var/www/v3.cesa.co.za/src/ContactBundle/Repository/ |
| 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);
}
}