You are here

public function RecipientHandlerBase::buildRecipientCountQuery in Simplenews 8

Implements SimplenewsRecipientHandlerInterface::buildRecipientCountQuery()

Overrides RecipientHandlerInterface::buildRecipientCountQuery

File

src/Plugin/simplenews/RecipientHandler/RecipientHandlerBase.php, line 61

Class

RecipientHandlerBase
Base class for all Recipient Handler classes.

Namespace

Drupal\simplenews\Plugin\simplenews\RecipientHandler

Code

public function buildRecipientCountQuery() {
  return $this
    ->buildRecipientQuery()
    ->countQuery();
}