123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Store\Model;
- use Magento\Store\Api\WebsiteManagementInterface;
- use Magento\Store\Model\ResourceModel\Website\CollectionFactory;
- /**
- * @api
- * @since 100.0.2
- */
- class WebsiteManagement implements WebsiteManagementInterface
- {
- /**
- * @var CollectionFactory
- */
- protected $websitesFactory;
- /**
- * @param CollectionFactory $websitesFactory
- */
- public function __construct(CollectionFactory $websitesFactory)
- {
- $this->websitesFactory = $websitesFactory;
- }
- /**
- * {@inheritdoc}
- */
- public function getCount()
- {
- $websites = $this->websitesFactory->create();
- /** @var \Magento\Store\Model\ResourceModel\Website\Collection $websites */
- return $websites->getSize();
- }
- }
|