customersFactory = $customersFactory; } /** * {@inheritdoc} */ public function getCount() { $customers = $this->customersFactory->create(); /** @var \Magento\Customer\Model\ResourceModel\Customer\Collection $customers */ return $customers->getSize(); } }