| Current Path : /var/www/v3.cesa.co.za/src/ContactBundle/Repository/ |
| Current File : /var/www/v3.cesa.co.za/src/ContactBundle/Repository/MessageErrorRepository.php |
<?php
namespace App\ContactBundle\Repository;
use Doctrine\ORM\EntityRepository;
/**
* MessageErrorRepository
*
* This class was generated by the Doctrine ORM. Add your own custom
* repository methods below.
*/
class MessageErrorRepository extends EntityRepository {
/**
* Get all error message IDs
*/
public function getErrorMessageRecipientIdSelect() {
$qb = $this->createQueryBuilder('me')
->join('me.message_recipient', 'mr')
->select('mr.id')
;
return $qb->getQuery()->getResult();
}
}