Pimcore\Document\Newsletter\AddressSourceAdapter\ReportAdapter::getTotalRecordCount PHP Method

getTotalRecordCount() public method

returns total number of newsletter recipients
public getTotalRecordCount ( ) : integer
return integer
    public function getTotalRecordCount()
    {
        if (!$this->list) {
            $this->getListing();
        }
        return $this->elementsTotal;
    }