Spaces:
No application file
No application file
namespace Mautic\LeadBundle\Segment\Stat; | |
use Mautic\LeadBundle\Model\ListModel; | |
use Mautic\LeadBundle\Segment\Stat\ChartQuery\SegmentContactsLineChartQuery; | |
class SegmentChartQueryFactory | |
{ | |
public function getContactsTotal(SegmentContactsLineChartQuery $query, ListModel $listModel): array | |
{ | |
$total = $listModel->getRepository()->getLeadCount($query->getSegmentId()); | |
return $query->getTotalStats($total); | |
} | |
public function getContactsAdded(SegmentContactsLineChartQuery $query): array | |
{ | |
return $query->getAddedEventLogStats(); | |
} | |
/** | |
* @return array | |
*/ | |
public function getContactsRemoved(SegmentContactsLineChartQuery $query) | |
{ | |
return $query->getRemovedEventLogStats(); | |
} | |
} | |