Newscoop\Entity\Repository\AuthorTypeRepository::getAuthorType PHP Méthode

getAuthorType() public méthode

public getAuthorType ( $id )
    public function getAuthorType($id)
    {
        $qb = $this->createQueryBuilder('at')->where('at.id = :id')->setParameter('id', $id);
        return $qb->getQuery();
    }