_storesFactory = $storesFactory; } /** * @return array */ public function toOptionArray() { if (!$this->_options) { /** @var $stores \Magento\Store\Model\ResourceModel\Store\Collection */ $stores = $this->_storesFactory->create(); $this->_options = $stores->load()->toOptionArray(); } return $this->_options; } }