storesFactory = $storesFactory; } /** * {@inheritdoc} */ public function getCount() { $stores = $this->storesFactory->create(); /** @var \Magento\Store\Model\ResourceModel\Store\Collection $stores */ $stores->setWithoutDefaultFilter(); return $stores->getSize(); } }