Newscoop\Entity\Repository\ArticleTopicRepository::getTheOccurrenceOfTheTopic PHP Метод

getTheOccurrenceOfTheTopic() публичный Метод

Gets the occurence of the topic.
public getTheOccurrenceOfTheTopic ( string | integer $topicId ) : Doctrine\ORM\Query
$topicId string | integer Topic id
Результат Doctrine\ORM\Query
    public function getTheOccurrenceOfTheTopic($topicId)
    {
        $query = $this->createQueryBuilder('t')->select('count(t)')->where('t.topic = :topicId')->setParameter('topicId', $topicId)->getQuery();
        return $query;
    }